2023-04-21 21:40:39 -04:00
|
|
|
% layout 'default';
|
|
|
|
% title 'Reset Password';
|
2023-05-20 13:22:29 -04:00
|
|
|
<h2 class="page-title"><%= title %></h2>
|
|
|
|
<form method="post" class="form-body">
|
|
|
|
<div class="form-field">
|
2023-05-28 00:42:07 -04:00
|
|
|
<% if (my $error = validation->error('password')) { =%>
|
|
|
|
<p class="field-with-error">Must be between <%= $error->[2] %>
|
|
|
|
and <%= $error->[3] %> characters.</p>
|
|
|
|
<% } =%>
|
2023-04-21 21:40:39 -04:00
|
|
|
<%= label_for password => 'Password' %>
|
2023-05-09 21:15:16 -04:00
|
|
|
<%= password_field password => (id => 'password') %>
|
2023-04-21 21:40:39 -04:00
|
|
|
</div>
|
2023-05-20 23:43:32 -04:00
|
|
|
<button type="submit" class="form-button">Reset</button>
|
2023-04-21 21:40:39 -04:00
|
|
|
</form>
|
|
|
|
|