eac_users_support 0.6.1 → 0.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7ee64c25bd950b9b549b5d076ffa714bdd04c1fab113a5edb25de4fb55b12bea
4
- data.tar.gz: 3a8f4f4e891890d1412b28e1c4a6ff638b60a9115bc0b3c530d566c708f196e5
3
+ metadata.gz: 81ae789152706182f996f0eea4a834f6f67a32d2ba5a55c546e7e4d90ee5ed1d
4
+ data.tar.gz: c074483dd718c83421cb7ed4b4a2e5b6caedd30f4691fff0c00ba4b4884f123f
5
5
  SHA512:
6
- metadata.gz: de4e753bf6fb247269ff0381e15c050659e945a0c68b5cd6ecf79f071f650720b5c6fdece533db93c633e8046f74f0767ca4f02bece6076e80390353151a2f43
7
- data.tar.gz: c99a04a1c44aa757a405d386946b04e74f954d1f16cceb04f6b1f9088a20bd81e63769d914727a289307667f869a6ce1d56fcf1aeaa843c618f58470dd26fb24
6
+ metadata.gz: 35803270f5414ecbfae4d0d955faf25f445a44661be1b74187a139b7ee66e12697f7a5b080d4c0f6ba806287f5041b381e19285f1742ec30858e5b18ca8d95e6
7
+ data.tar.gz: bcef803418010fc56ff5dc16047ecb602b273cdb00d85ec53c4d895e382610dea22ed98c9c2f707769debfaee7b3da10dc3bf6501d04382160b8fb69190e7119
@@ -0,0 +1,19 @@
1
+ <%= form_for(resource, as: resource_name, url: session_path(resource_name)) do |f| %>
2
+ <div class="field">
3
+ <%= f.label :email %><br />
4
+ <%= f.email_field :email, autofocus: true, autocomplete: "email" %>
5
+ </div>
6
+ <div class="field">
7
+ <%= f.label :password %><br />
8
+ <%= f.password_field :password, autocomplete: "current-password" %>
9
+ </div>
10
+ <% if devise_mapping.rememberable? %>
11
+ <div class="field">
12
+ <%= f.check_box :remember_me %>
13
+ <%= f.label :remember_me %>
14
+ </div>
15
+ <% end %>
16
+ <div class="actions">
17
+ <%= f.submit "Log in" %>
18
+ </div>
19
+ <% end %>
@@ -0,0 +1,3 @@
1
+ <h2>Log in</h2>
2
+ <%= render partial: 'login_form' %>
3
+ <%= render "devise/shared/links" %>
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EacUsersSupport
4
- VERSION = '0.6.1'
4
+ VERSION = '0.7.0'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: eac_users_support
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.1
4
+ version: 0.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Esquilo Azul Company
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-05-15 00:00:00.000000000 Z
11
+ date: 2020-05-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: active_scaffold
@@ -163,6 +163,8 @@ files:
163
163
  - app/controllers/eac_users_support/application_controller.rb
164
164
  - app/controllers/eac_users_support/users_controller.rb
165
165
  - app/models/eac_users_support/user.rb
166
+ - app/views/devise/sessions/_login_form.html.erb
167
+ - app/views/devise/sessions/new.html.erb
166
168
  - app/views/eac_users_support/users/edit.html.erb
167
169
  - config/initializers/devise.rb
168
170
  - config/locales/devise.en.yml