mirror of
https://github.com/plausible/analytics.git
synced 2024-12-24 10:02:10 +03:00
32937c53d1
* Upgrade config file * Upgrade grey colour * Update styles for dashboard * Update styles for new site flow * Update styles for user settings * Update site setting styles * Update other pages * Adjust spacing * Update last grey rules * Purge css
15 lines
823 B
Elixir
15 lines
823 B
Elixir
<%= form_for @conn, "/password", [class: "bg-white max-w-md w-full mx-auto shadow-md rounded px-8 py-6 mt-8"], fn f -> %>
|
|
<h2 class="text-xl font-black">Set your password</h2>
|
|
<div class="my-4">
|
|
<p class="text-gray-600 text-sm mt-1 mb-2">Min 6 characters</p>
|
|
<%= password_input f, :password, class: "transition bg-gray-200 appearance-none border border-transparent rounded w-full p-2 text-gray-700 leading-normal appearance-none focus:outline-none focus:bg-white focus:border-gray-300" %>
|
|
<%= if @conn.assigns[:changeset] do %>
|
|
<%= error_tag @changeset, :password %>
|
|
<% end %>
|
|
</div>
|
|
<%= submit "Set password →", class: "button mt-4 w-full" %>
|
|
<p class="text-center text-gray-600 text-xs mt-4">
|
|
Don't have an account? <%= link("Register", to: "/register") %> instead.
|
|
</p>
|
|
<% end %>
|