tailwindcss-rails 2.7.6-aarch64-linux → 2.7.8-aarch64-linux

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: 5639f1939af8a9b9aca8f8eba53e49867b3f376dc57e2b1307d5820f01886f35
4
- data.tar.gz: 89101f4e3777031ef16fc50519b9ca0b112bf05e1afe9cb80c0974db2d15c2f9
3
+ metadata.gz: 1d5de6a7829c7167c09c48f84e479b74f93d88f8f71f3bf1e0508bac2d82a0b1
4
+ data.tar.gz: 43fd23c4e0a0d0edc81553f17ae12d941563c027ab45e474272700a272b0dd64
5
5
  SHA512:
6
- metadata.gz: bf18d1c912a435e53675a1ba98ab9183f9cfa28c990832e0f246d757a725fdb6972f993c6836336a4fa8c2923ddf6de9b4932968cecaa5def358b9e03a799d46
7
- data.tar.gz: d05574d46e281efddf1dede89d37938ca65f058e5999aa178210f8685b086dc96bf93eeed6898ca974d5ce4b67895f058e81185e36837f31b9137c0e36bdf547
6
+ metadata.gz: 356f4b4b0a40f1166acb27a2b1fdf23f8cb4683832b092c42d3bb3681f9467f4104083592e87c7c9074b555f0c5053c765b5acebc06ad2c70a404b998f9e96f9
7
+ data.tar.gz: 3a93b0debb5d731d8de57b040485d93f2ab584531753ac0a1373e615a4f129d4ec7dc3f4869bca55ac9f1fcfcfe6ec12a866d9873b22933ffe52b9dffb033a44
@@ -0,0 +1,21 @@
1
+ <div class="mx-auto md:w-2/3 w-full">
2
+ <%% if alert = flash[:alert] %>
3
+ <p class="py-2 px-3 bg-red-50 mb-5 text-red-500 font-medium rounded-lg inline-block" id="alert"><%%= alert %></p>
4
+ <%% end %>
5
+
6
+ <h1 class="font-bold text-4xl">Update your password</h1>
7
+
8
+ <%%= form_with url: password_path(params[:token]), method: :put, class: "contents" do |form| %>
9
+ <div class="my-5">
10
+ <%%= form.password_field :password, required: true, autocomplete: "new-password", placeholder: "Enter new password", maxlength: 72, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %>
11
+ </div>
12
+
13
+ <div class="my-5">
14
+ <%%= form.password_field :password_confirmation, required: true, autocomplete: "new-password", placeholder: "Repeat new password", maxlength: 72, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %>
15
+ </div>
16
+
17
+ <div class="inline">
18
+ <%%= form.submit "Save", class: "rounded-lg py-3 px-5 bg-blue-600 text-white inline-block font-medium cursor-pointer" %>
19
+ </div>
20
+ <%% end %>
21
+ </div>
@@ -0,0 +1,17 @@
1
+ <div class="mx-auto md:w-2/3 w-full">
2
+ <%% if alert = flash[:alert] %>
3
+ <p class="py-2 px-3 bg-red-50 mb-5 text-red-500 font-medium rounded-lg inline-block" id="alert"><%%= alert %></p>
4
+ <%% end %>
5
+
6
+ <h1 class="font-bold text-4xl">Forgot your password?</h1>
7
+
8
+ <%%= form_with url: passwords_path, class: "contents" do |form| %>
9
+ <div class="my-5">
10
+ <%%= form.email_field :email_address, required: true, autofocus: true, autocomplete: "username", placeholder: "Enter your email address", value: params[:email_address], class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %>
11
+ </div>
12
+
13
+ <div class="inline">
14
+ <%%= form.submit "Email reset instructions", class: "rounded-lg py-3 px-5 bg-blue-600 text-white inline-block font-medium cursor-pointer" %>
15
+ </div>
16
+ <%% end %>
17
+ </div>
@@ -0,0 +1,31 @@
1
+ <div class="mx-auto md:w-2/3 w-full">
2
+ <%% if alert = flash[:alert] %>
3
+ <p class="py-2 px-3 bg-red-50 mb-5 text-red-500 font-medium rounded-lg inline-block" id="alert"><%%= alert %></p>
4
+ <%% end %>
5
+
6
+ <%% if notice = flash[:notice] %>
7
+ <p class="py-2 px-3 bg-green-50 mb-5 text-green-500 font-medium rounded-lg inline-block" id="notice"><%%= notice %></p>
8
+ <%% end %>
9
+
10
+ <h1 class="font-bold text-4xl">Sign in</h1>
11
+
12
+ <%%= form_with url: session_url, class: "contents" do |form| %>
13
+ <div class="my-5">
14
+ <%%= form.email_field :email_address, required: true, autofocus: true, autocomplete: "username", placeholder: "Enter your email address", value: params[:email_address], class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %>
15
+ </div>
16
+
17
+ <div class="my-5">
18
+ <%%= form.password_field :password, required: true, autocomplete: "current-password", placeholder: "Enter your password", maxlength: 72, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %>
19
+ </div>
20
+
21
+ <div class="col-span-6 sm:flex sm:items-center sm:gap-4">
22
+ <div class="inline">
23
+ <%%= form.submit "Sign in", class: "rounded-lg py-3 px-5 bg-blue-600 text-white inline-block font-medium cursor-pointer" %>
24
+ </div>
25
+
26
+ <div class="mt-4 text-sm text-gray-500 sm:mt-0">
27
+ <%%= link_to "Forgot password?", new_password_path, class: "text-gray-700 underline" %>
28
+ </div>
29
+ </div>
30
+ <%% end %>
31
+ </div>
@@ -28,7 +28,7 @@
28
28
  <%%= form.label :<%= attribute.column_name %> %>
29
29
  <% if attribute.field_type == :text_area -%>
30
30
  <%%= form.<%= attribute.field_type %> :<%= attribute.column_name %>, rows: 4, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %>
31
- <% elsif attribute.field_type == :check_box -%>
31
+ <% elsif attribute.field_type == :checkbox -%>
32
32
  <%%= form.<%= attribute.field_type %> :<%= attribute.column_name %>, class: "block mt-2 h-5 w-5" %>
33
33
  <% else -%>
34
34
  <%%= form.<%= attribute.field_type %> :<%= attribute.column_name %>, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %>
@@ -1,3 +1,3 @@
1
1
  module Tailwindcss
2
- VERSION = "2.7.6"
2
+ VERSION = "2.7.8"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tailwindcss-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.7.6
4
+ version: 2.7.8
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - David Heinemeier Hansson
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-09-23 00:00:00.000000000 Z
11
+ date: 2024-10-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -56,6 +56,9 @@ files:
56
56
  - exe/aarch64-linux/tailwindcss
57
57
  - exe/tailwindcss
58
58
  - lib/generators/tailwindcss/authentication/authentication_generator.rb
59
+ - lib/generators/tailwindcss/authentication/templates/app/views/passwords/edit.html.erb
60
+ - lib/generators/tailwindcss/authentication/templates/app/views/passwords/new.html.erb
61
+ - lib/generators/tailwindcss/authentication/templates/app/views/sessions/new.html.erb
59
62
  - lib/generators/tailwindcss/authentication/templates/views/passwords/edit.html.erb
60
63
  - lib/generators/tailwindcss/authentication/templates/views/passwords/new.html.erb
61
64
  - lib/generators/tailwindcss/authentication/templates/views/sessions/new.html.erb