PostText/templates/moderator/unlock_acct.html.ep

11 lines
314 B
Plaintext
Raw Normal View History

2023-04-21 22:25:05 -04:00
% layout 'default';
% title 'Unlock Account';
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-04-21 23:21:12 -04:00
<%= label_for email => 'Email' %>
<%= email_field email => (id => 'email') %>
2023-04-21 23:21:12 -04:00
</div>
2023-05-20 13:22:29 -04:00
<%= submit_button Unlock => (class => 'form-button') %>
2023-04-21 22:25:05 -04:00
</form>