thecore_ui_commons 3.0.7 → 3.0.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d2e82bc897c2c40c1f8aba8a48068740c1d56fc7c94e90eee2c48bf293a2b187
4
- data.tar.gz: 9dc3f31aea8c17bbd5630a5839894ae6d7b21c33340cbab8aee77935beecda82
3
+ metadata.gz: 35980a9a7577fc5d8fcbc5c0d3d861dd04b0929387f61a2a8aef8624f0cbe381
4
+ data.tar.gz: fb52c24890ad99320658182fd3b5645f1606fc5d19d54aa0a60a1dbf6589517c
5
5
  SHA512:
6
- metadata.gz: f8c45f2cd0dec1f442b67857c814497ce7596c796d4304da22499c2348be7c1788e89bbbd01db542d60aa5dd5b4e387aaf882bc2910f707f3b42bce58771ad2f
7
- data.tar.gz: 9640e77e101424114545f2e1c92a3d72a7eedfdf368f0c5153d3b2934c2e27ef5d76e0fa29491510503c8513e08bd27eb0613beb427bd53cb1efd31b82e5e806
6
+ metadata.gz: 2aa32020a8969713f2d00b7d81543d9a3c8b9be412187fa771ceb74021c6c98e6d59cc0d0d822dbd46b97218cf2e5e0b426049b272ec06ea3b2904f610e559fb
7
+ data.tar.gz: 65dc833c91a9314509e175078c26ef4b068b91b10a7b5e57133d0990c476f68723df86e4a293076a264f8044e26fc09c3a05a4d5ff95f006cdb8352e9b0fe0a7
@@ -2,7 +2,7 @@
2
2
  <browserconfig>
3
3
  <msapplication>
4
4
  <tile>
5
- <square150x150logo src="<%= image_path 'mstile-150x150.png' %>"/>
5
+ <square150x150logo src="mstile-150x150.png"/>
6
6
  <TileColor>#da532c</TileColor>
7
7
  </tile>
8
8
  </msapplication>
@@ -1,16 +1,15 @@
1
1
  {
2
2
  "short_name": "Thecore",
3
- "icons": [
4
- {
5
- "src": "<%= image_path 'android-chrome-192x192.png' %>",
6
- "sizes": "192x192",
7
- "type": "image/png"
8
- },
9
- {
10
- "src": "<%= image_path 'android-chrome-512x512.png' %>",
11
- "sizes": "512x512",
12
- "type": "image/png"
13
- }
3
+ "icons": [{
4
+ "src": "android-chrome-192x192.png",
5
+ "sizes": "192x192",
6
+ "type": "image/png"
7
+ },
8
+ {
9
+ "src": "android-chrome-512x512.png",
10
+ "sizes": "512x512",
11
+ "type": "image/png"
12
+ }
14
13
  ],
15
14
  "name": "Thecore",
16
15
  "theme_color": "#37505C",
@@ -18,4 +17,4 @@
18
17
  "orientation": "portrait",
19
18
  "display": "standalone",
20
19
  "optional_permissions": ["clipboardWrite", "clipboardRead"]
21
- }
20
+ }
@@ -0,0 +1,25 @@
1
+ <div class=login-container id="login-form">
2
+ <%= form_for(resource, as: resource_name, url: session_path(resource_name)) do |f| %>
3
+ <div class="field">
4
+ <%= f.text_field :login, autofocus: true, :class => "form-control", placeholder: t("devise.sessions.new.login") %>
5
+ </div>
6
+
7
+ <div class="field">
8
+ <%= f.password_field :password, autocomplete: "off", :class => "form-control", placeholder: t("devise.sessions.new.password") %>
9
+ </div>
10
+
11
+ <% if devise_mapping.rememberable? -%>
12
+ <div class="form-check">
13
+ <%= f.check_box :remember_me, class: "form-check-input" %>
14
+ <label class="form-check-label" for="defaultCheck1">
15
+ <%=t "activerecord.attributes.user.remember_me" %>
16
+ </label>
17
+ </div>
18
+ <% end -%>
19
+
20
+ <div class="actions">
21
+ <%= f.submit t("devise.sessions.new.sign_in"), class: "btn" %>
22
+ <%= render "devise/shared/links" %>
23
+ </div>
24
+ <% end %>
25
+ </div>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: thecore_ui_commons
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.7
4
+ version: 3.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gabriele Tassoni
@@ -130,6 +130,7 @@ files:
130
130
  - app/assets/stylesheets/devise/sessions.css
131
131
  - app/controllers/application_controller.rb
132
132
  - app/views/contact_mailer/contact_message.html.erb
133
+ - app/views/devise/sessions/new.html.erb
133
134
  - app/views/kaminari/_first_page.html.erb
134
135
  - app/views/kaminari/_gap.html.erb
135
136
  - app/views/kaminari/_last_page.html.erb