authentication-zero 0.0.8 → 0.0.9
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 +4 -4
- data/Gemfile.lock +1 -1
- data/lib/authentication_zero/version.rb +1 -1
- data/lib/generators/authentication/templates/views/password_mailer/reset.html.erb.tt +5 -4
- data/lib/generators/authentication/templates/views/password_mailer/reset.text.erb.tt +5 -4
- data/lib/generators/authentication/templates/views/password_resets/new.html.erb.tt +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 11deb23576e389ac26590fa1028b8da52e874a1eb8be2578961816b2745a8b14
|
|
4
|
+
data.tar.gz: debebbdfe6829936c06b5ff8f2f2ba13f1d623b944ac65ff7a581070fd78d2ab
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cb417c4b4e83690f092c28d3573718217fe3ab25ac605c1dbb0ee494289921c0d71dae1d1cf92b9a702339d5b108b702ed64ae7177aee49eb53fe24314da3e1a
|
|
7
|
+
data.tar.gz: 6869e7c3eb2775fbfcc90a75e97eb9bd6e30244452ef065e6da688a22d307d1f2f3c305b93b1ba4f157263b4d7a65ecb22e2c1f30e064ec9034e5a53788760ed
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
|
|
1
|
+
<p>Hello <%%= params[:<%= singular_table_name %>].email %>!</p>
|
|
2
2
|
|
|
3
|
-
Someone requested a
|
|
3
|
+
<p>Someone has requested a link to change your password. You can do this through the link below.</p>
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
<p><%%= link_to "Change my password", password_reset_edit_url(token: @token) %></p>
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
<p>If you didn't request this, please ignore this email.</p>
|
|
8
|
+
<p>Your password won't change until you access the link above and create a new one.</p>
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
|
|
1
|
+
Hello <%%= params[:<%= singular_table_name %>].email %>
|
|
2
2
|
|
|
3
|
-
Someone requested a
|
|
3
|
+
Someone has requested a link to change your password, and you can do this through the link below.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
[Change my password]<%%= password_reset_edit_url(token: @token) %>
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
If you didn't request this, please ignore this email.
|
|
8
|
+
Your password won't change until you access the link above and create a new one.
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<%%= form_with(url: password_reset_path) do |form| %>
|
|
6
6
|
<div>
|
|
7
7
|
<%%= form.label :email, style: "display: block" %>
|
|
8
|
-
<%%= form.email_field :email, autofocus: true, required: true
|
|
8
|
+
<%%= form.email_field :email, autofocus: true, required: true %>
|
|
9
9
|
</div>
|
|
10
10
|
|
|
11
11
|
<div>
|