Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com> This commit refactors the entire application to replace the 'parties' concept with 'events'. All controllers, models, views, and related files have been updated to reflect this change. The parties table has been replaced with an events table, and all related functionality has been updated accordingly.
16 lines
413 B
Plaintext
Executable File
16 lines
413 B
Plaintext
Executable File
<h2>Resend unlock instructions</h2>
|
|
|
|
<%= form_for(resource, as: resource_name, url: unlock_path(resource_name), html: { method: :post }) do |f| %>
|
|
|
|
<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" %>
|