bigly-chat/views/form_bare.ejs

22 lines
919 B
Text
Raw Normal View History

2024-11-25 14:12:44 -05:00
<form class='form' enctype='multipart/form-data' method='POST' action='<%= route %>'>
<h1 class='form-heading'>
<%= title %>
</h1>
<div class='form-message'></div>
2024-11-25 14:12:44 -05:00
<span class='form-key'>
<img src='/client/captcha'>
</span>
<input class='form-input' type='text' name='challenger' value='Type the captcha'>
2024-11-25 14:12:44 -05:00
<% for (let elem of data) { %>
<span class='form-key'>
<%= elem.label %>
</span>
<% if (elem.type=='textarea' ) { %>
<textarea class='form-input' name='<%= elem.name %>'></textarea>
<% } else { %>
<input class='form-input' type='<%= elem.type %>' name='<%= elem.name %>' value='<%= elem.hidden %>'
<%=elem.hidden ? 'hidden ' : '' %>>
<% } %>
<% } %>
<input class='form-button' type='Submit' name='Submit'>
</form>