eac_users_support 0.6.1 → 0.7.0
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 81ae789152706182f996f0eea4a834f6f67a32d2ba5a55c546e7e4d90ee5ed1d
|
4
|
+
data.tar.gz: c074483dd718c83421cb7ed4b4a2e5b6caedd30f4691fff0c00ba4b4884f123f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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 %>
|
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.
|
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-
|
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
|