PostText/templates/moderator/lock_acct.html.ep

11 lines
312 B
Plaintext
Raw Normal View History

2023-04-22 02:25:05 +00:00
% layout 'default';
% title 'Lock Account';
2023-05-20 17:22:29 +00:00
<h2 class="page-title"><%= title %></h2>
<form method="post" class="form-body">
<div class="form-field">
2023-04-22 03:21:12 +00:00
<%= label_for email => 'Email' %>
<%= email_field email => (id => 'email') %>
2023-04-22 03:21:12 +00:00
</div>
2023-05-21 03:43:32 +00:00
<button type="submit" class="form-button">Lock</button>
2023-04-22 02:25:05 +00:00
</form>