2023-04-15 00:57:45 -04:00
|
|
|
% layout 'default';
|
|
|
|
% title 'Create Moderator';
|
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-15 00:57:45 -04:00
|
|
|
<%= label_for name => 'Name' %>
|
2023-05-09 21:15:16 -04:00
|
|
|
<%= text_field name => (id => 'name') %>
|
2023-04-15 00:57:45 -04:00
|
|
|
</div>
|
2023-05-20 13:22:29 -04:00
|
|
|
<div class="form-field">
|
2023-04-15 00:57:45 -04:00
|
|
|
<%= label_for email => 'Email' %>
|
2023-05-09 21:15:16 -04:00
|
|
|
<%= email_field email => (id => 'email') %>
|
2023-04-15 00:57:45 -04:00
|
|
|
</div>
|
2023-05-20 13:22:29 -04:00
|
|
|
<div class="form-field">
|
2023-04-15 00:57:45 -04:00
|
|
|
<%= label_for password => 'Password' %>
|
2023-05-09 21:15:16 -04:00
|
|
|
<%= password_field password => (id => 'password') %>
|
2023-04-15 00:57:45 -04:00
|
|
|
</div>
|
2023-05-20 13:22:29 -04:00
|
|
|
<%= submit_button Create => (class => 'form-button') %>
|
2023-04-15 00:57:45 -04:00
|
|
|
</form>
|