tailwindcss-rails 2.7.6 → 2.7.7

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: a157d6841bfb30c1b315cd8d6813e11593b375c00f7e10ce17fb41e9ab722554
4
- data.tar.gz: 0cb80ed07a9a82d75513142adf5b7b93448c253dc9c68a69ec07c0aa71b481f9
3
+ metadata.gz: 0aebc426b060bf8a0807111fc1d90c5d39c3fd929cfb52b93e47944163a7580c
4
+ data.tar.gz: 31cd8bea1d993546befc080eb07e3972edf15a4c5462bda4208eff65f987eee6
5
5
  SHA512:
6
- metadata.gz: 41ba1c2fe8231537403bf155fd9bcc4b8550c0ee221991db9442196dcbf42604ab67811c40e7a86e0b337586bafc6e5a5827de5baea349fd1cdb724bebd28802
7
- data.tar.gz: 503566ec51c9bdee4e4ed2573c2c7a8717f5e25895005c2eb0b3399c90a7c887241ba29034fb4e4dc955216e374e5c771845acb06afa459bb09ece59274a697a
6
+ metadata.gz: 0f846fcaf057728daf5ac5bdce7f278d3e394201b48fe3e0b80af1599296a7cfccab75480dd6076d6862fe284d04480e596ddceecea1db3bc4ff0ef93ce9339a
7
+ data.tar.gz: 4f1278bdd0b96bb91d2c1c650d1054f261588aaf60d2c6f75d260a9159539204cb76522756b88b69bff8e4141fc0f92baef534fce261832f2019acdfc8e57c86
@@ -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>
@@ -1,3 +1,3 @@
1
1
  module Tailwindcss
2
- VERSION = "2.7.6"
2
+ VERSION = "2.7.7"
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.7
5
5
  platform: ruby
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-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -54,6 +54,9 @@ files:
54
54
  - app/assets/stylesheets/inter-font.css
55
55
  - exe/tailwindcss
56
56
  - lib/generators/tailwindcss/authentication/authentication_generator.rb
57
+ - lib/generators/tailwindcss/authentication/templates/app/views/passwords/edit.html.erb
58
+ - lib/generators/tailwindcss/authentication/templates/app/views/passwords/new.html.erb
59
+ - lib/generators/tailwindcss/authentication/templates/app/views/sessions/new.html.erb
57
60
  - lib/generators/tailwindcss/authentication/templates/views/passwords/edit.html.erb
58
61
  - lib/generators/tailwindcss/authentication/templates/views/passwords/new.html.erb
59
62
  - lib/generators/tailwindcss/authentication/templates/views/sessions/new.html.erb