PostText/templates/moderator/demote.html.ep

16 lines
536 B
Plaintext
Raw Normal View History

2023-04-21 23:21:12 -04:00
% layout 'default';
% title 'Demote Admin';
2023-05-20 13:22:29 -04:00
<h2 class="page-title"><%= title %></h2>
<form method="post" class="form-body">
<div class="form-field">
<% if (my $error = validation->error('email')) { =%>
<p class="field-with-error">Must be between <%= $error->[2] %>
and <%= $error->[3] %> characters.</p>
<% } =%>
2023-04-21 23:21:12 -04:00
<%= label_for email => 'Email' %>
2023-10-15 22:30:01 -04:00
<%= email_field email => (id => 'email', autofocus => undef) %>
2023-04-21 23:21:12 -04:00
</div>
<%= csrf_field %>
2023-05-20 23:43:32 -04:00
<button type="submit" class="form-button">Demote</button>
2023-04-21 23:21:12 -04:00
</form>