diff options
author | David Gay <david@davidgay.org> | 2021-04-25 13:07:25 -0400 |
---|---|---|
committer | David Gay <david@davidgay.org> | 2021-04-25 13:07:25 -0400 |
commit | 8b517ea5ac6301bd513c18632aa34ce91545dd95 (patch) | |
tree | 7b4dc6f1e6d303ec6f5b02a27151c088bf5c72af /app/views/devise/unlocks | |
parent | 10f7bb7deb784be697aaff629d10b61d9cfe739d (diff) |
Adjust devise routes, views, and language
Diffstat (limited to 'app/views/devise/unlocks')
-rw-r--r-- | app/views/devise/unlocks/new.html.erb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/app/views/devise/unlocks/new.html.erb b/app/views/devise/unlocks/new.html.erb new file mode 100644 index 0000000..ffc34de --- /dev/null +++ b/app/views/devise/unlocks/new.html.erb @@ -0,0 +1,16 @@ +<h2>Resend unlock instructions</h2> + +<%= form_for(resource, as: resource_name, url: unlock_path(resource_name), html: { method: :post }) do |f| %> + <%= render "devise/shared/error_messages", resource: resource %> + + <div class="field"> + <%= f.label :email %><br /> + <%= f.email_field :email, autofocus: true, autocomplete: "email" %> + </div> + + <div class="actions"> + <%= f.submit "Resend unlock instructions" %> + </div> +<% end %> + +<%= render "devise/shared/links" %> |