PostText/templates/moderator/admin_reset.html.ep

15 lines
392 B
Plaintext
Raw Normal View History

2023-04-21 21:40:39 -04:00
% layout 'default';
% title 'Reset Password';
<h2><%= title %></h2>
<form method="post">
<div class="email field">
<%= label_for email => 'Email' %>
<%= email_field email => (id => 'email') %>
2023-04-21 21:40:39 -04:00
</div>
<div class="password field">
<%= label_for password => 'Password' %>
<%= password_field password => (id => 'password') %>
2023-04-21 21:40:39 -04:00
</div>
<%= submit_button 'Reset' %>
</form>