19 lines
458 B
Plaintext
19 lines
458 B
Plaintext
<% content_for :title, "Skills Assessment Admin" %>
|
|
|
|
<h1>Password Reset</h1>
|
|
|
|
<%= form_for :auth, url: admin_reset_password_path do |form| %>
|
|
<div>
|
|
<%= form.label :password %>
|
|
<%= form.password_field :password %>
|
|
</div>
|
|
|
|
<div>
|
|
<%= form.label :password_confirmation %>
|
|
<%= form.password_field :password_confirmation %>
|
|
</div>
|
|
|
|
<%= submit_tag "Reset Password" %>
|
|
<%= hidden_field_tag :reset_token, params[:reset_token] %>
|
|
<% end %>
|