standard_id 0.21.0 → 0.21.1
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/app/views/standard_id/web/login/show.html.erb +17 -11
- data/lib/standard_id/version.rb +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: fea1716449529456cd6e771d62e2565d9100b96d10fb1fb93a4e0e13dc22ca74
|
|
4
|
+
data.tar.gz: 6403031d85b3a6c50f6a24c1249cb26d3c1b730cc77355d6f5f44946a0a237c4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 33e81b4a0b5d0bf44519c6713e9fd433420362388030fb6bdc22d11e134b342614b92943bfa9b3aacbda9edc4ce63eda3f5345d805514e4db731f35dbfa71d90
|
|
7
|
+
data.tar.gz: 4e2400b5411341dfdd7f70d5921f5357f4fc7dbcb48e416fe58252267d0a711ac479d35536340202714fbc34bf6af50e0ca15424a27d2ce667f96ad946153225
|
|
@@ -34,10 +34,12 @@
|
|
|
34
34
|
<%= render "standard_id/web/login/social_buttons" %>
|
|
35
35
|
<% end %>
|
|
36
36
|
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
37
|
+
<% if StandardId.config.web.signup %>
|
|
38
|
+
<p>
|
|
39
|
+
Not a member?
|
|
40
|
+
<%= link_to "Sign up", signup_path(redirect_uri: @redirect_uri) %>
|
|
41
|
+
</p>
|
|
42
|
+
<% end %>
|
|
41
43
|
</main>
|
|
42
44
|
|
|
43
45
|
<% elsif @password_enabled %>
|
|
@@ -91,9 +93,11 @@
|
|
|
91
93
|
<label for="remember-me" class="block text-sm/6 text-gray-900 dark:text-white">Remember me</label>
|
|
92
94
|
</div>
|
|
93
95
|
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
96
|
+
<% if StandardId.config.web.password_reset %>
|
|
97
|
+
<div class="text-sm/6">
|
|
98
|
+
<%= link_to "Forgot password?", reset_password_start_path, class: "font-semibold text-indigo-600 hover:text-indigo-500 dark:text-indigo-400 dark:hover:text-indigo-300" %>
|
|
99
|
+
</div>
|
|
100
|
+
<% end %>
|
|
97
101
|
</div>
|
|
98
102
|
|
|
99
103
|
<div>
|
|
@@ -143,10 +147,12 @@
|
|
|
143
147
|
<% end %>
|
|
144
148
|
</div>
|
|
145
149
|
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
+
<% if StandardId.config.web.signup %>
|
|
151
|
+
<p class="mt-10 text-center text-sm/6 text-gray-500 dark:text-gray-400">
|
|
152
|
+
Not a member?
|
|
153
|
+
<%= link_to "Sign up", signup_path(redirect_uri: @redirect_uri), class: "font-semibold text-indigo-600 hover:text-indigo-500 dark:text-indigo-400 dark:hover:text-indigo-300" %>
|
|
154
|
+
</p>
|
|
155
|
+
<% end %>
|
|
150
156
|
</div>
|
|
151
157
|
</div>
|
|
152
158
|
|
data/lib/standard_id/version.rb
CHANGED