daisy_devise 0.0.2 → 0.0.3
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f2b7b10dfa3a0de3cbfe326611ff57ac1ad414d02ff6429ee15860cf1349d93b
|
|
4
|
+
data.tar.gz: dcce241819b25db7299a7009d9d6979a337de095dfc09236d8e60566896dc9c4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f12a84c6f244fe35508747f78ea4261faf228602f8de57e50306f5dda75bdd8453e1723415fc906a3cda168db71bdd8313ccfb066fdbb096a5d86d59beae3bc7
|
|
7
|
+
data.tar.gz: e6a157e151340274f2a802dddbc6fba7426895329f0507a9b17ca6862fa778cbcc910250cd877182f13baac2738a634a446b6ca87460a0c3b2083773a47f53f4
|
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
<%= form_for(resource, as: resource_name, url: registration_path(resource_name), html: { method: :put }) do |f| %>
|
|
7
7
|
<%= render "devise/shared/error_messages", resource: resource %>
|
|
8
8
|
|
|
9
|
-
<div class="
|
|
10
|
-
<%= f.label :email, class: "label"
|
|
9
|
+
<div class="flex flex-col gap-2 mb-4">
|
|
10
|
+
<%= f.label :email, class: "label" %>
|
|
11
11
|
<%= f.email_field :email, autofocus: true, autocomplete: "email", class: "input" %>
|
|
12
12
|
</div>
|
|
13
13
|
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
<div>Currently waiting confirmation for: <%= resource.unconfirmed_email %></div>
|
|
16
16
|
<% end %>
|
|
17
17
|
|
|
18
|
-
<div class="
|
|
19
|
-
<%= f.label :password, class: "label" %> <i>(leave blank if you don't want to change it)</i
|
|
18
|
+
<div class="flex flex-col gap-2 mb-4">
|
|
19
|
+
<%= f.label :password, class: "label" %> <i>(leave blank if you don't want to change it)</i>
|
|
20
20
|
<%= f.password_field :password, autocomplete: "new-password", class: "input" %>
|
|
21
21
|
<% if @minimum_password_length %>
|
|
22
22
|
<br />
|
|
@@ -24,13 +24,13 @@
|
|
|
24
24
|
<% end %>
|
|
25
25
|
</div>
|
|
26
26
|
|
|
27
|
-
<div class="
|
|
28
|
-
<%= f.label :password_confirmation, class: "label"
|
|
27
|
+
<div class="flex flex-col gap-2 mb-4">
|
|
28
|
+
<%= f.label :password_confirmation, class: "label" %>
|
|
29
29
|
<%= f.password_field :password_confirmation, autocomplete: "new-password", class: "input" %>
|
|
30
30
|
</div>
|
|
31
31
|
|
|
32
32
|
<div class="field mb-4">
|
|
33
|
-
<%= f.label :current_password, class: "label" %> <i>(we need your current password to confirm your changes)</i
|
|
33
|
+
<%= f.label :current_password, class: "label" %> <i>(we need your current password to confirm your changes)</i>
|
|
34
34
|
<%= f.password_field :current_password, autocomplete: "current-password", class: "input" %>
|
|
35
35
|
</div>
|
|
36
36
|
|
|
@@ -5,18 +5,18 @@
|
|
|
5
5
|
<%= form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f| %>
|
|
6
6
|
<%= render "devise/shared/error_messages", resource: resource %>
|
|
7
7
|
|
|
8
|
-
<div class="flex flex-col mb-6">
|
|
9
|
-
<%= f.label :email, class: "label"
|
|
8
|
+
<div class="flex flex-col mb-6 gap-2">
|
|
9
|
+
<%= f.label :email, class: "label" %>
|
|
10
10
|
<%= f.email_field :email, autofocus: true, autocomplete: "email", class: "input w-full" %>
|
|
11
11
|
</div>
|
|
12
12
|
|
|
13
|
-
<div class="flex flex-col mb-6">
|
|
13
|
+
<div class="flex flex-col mb-6 gap-2">
|
|
14
14
|
<%= f.label :password, class: "label" %>
|
|
15
15
|
<%= f.password_field :password, autocomplete: "new-password", class: "input w-full" %>
|
|
16
16
|
</div>
|
|
17
17
|
|
|
18
|
-
<div class="flex flex-col mb-6">
|
|
19
|
-
<%= f.label :password_confirmation, class: "label"
|
|
18
|
+
<div class="flex flex-col mb-6 gap-2">
|
|
19
|
+
<%= f.label :password_confirmation, class: "label" %>
|
|
20
20
|
<%= f.password_field :password_confirmation, autocomplete: "new-password", class: "input w-full" %>
|
|
21
21
|
</div>
|
|
22
22
|
|
|
@@ -3,18 +3,18 @@
|
|
|
3
3
|
<legend class="fieldset-legend">Login</legend>
|
|
4
4
|
|
|
5
5
|
<%= form_for(resource, as: resource_name, url: session_path(resource_name)) do |f| %>
|
|
6
|
-
<div class="w-full flex flex-col mb-6">
|
|
7
|
-
<%= f.label :email, class: "label"
|
|
6
|
+
<div class="w-full flex flex-col mb-6 gap-2">
|
|
7
|
+
<%= f.label :email, class: "label" %>
|
|
8
8
|
<%= f.email_field :email, autofocus: true, autocomplete: "email", class: "input w-full" %>
|
|
9
9
|
</div>
|
|
10
10
|
|
|
11
|
-
<div class="w-full flex flex-col mb-6">
|
|
12
|
-
<%= f.label :password, class: "label"
|
|
11
|
+
<div class="w-full flex flex-col mb-6 gap-2">
|
|
12
|
+
<%= f.label :password, class: "label" %>
|
|
13
13
|
<%= f.password_field :password, autocomplete: "current-password", class: "input w-full" %>
|
|
14
14
|
</div>
|
|
15
15
|
|
|
16
16
|
<% if devise_mapping.rememberable? %>
|
|
17
|
-
<div class="w-full flex gap-4 mb-6">
|
|
17
|
+
<div class="w-full flex gap-4 mb-6 gap-2">
|
|
18
18
|
<%= f.check_box :remember_me, class: "checkbox" %>
|
|
19
19
|
<%= f.label :remember_me, class: "label" %>
|
|
20
20
|
</div>
|