1
0
mirror of https://github.com/matt-fidd/stratos.git synced 2026-01-01 20:19:30 +00:00
Files
stratos/views/addClassUser.hbs

17 lines
492 B
Handlebars

<section class='adminSection'>
<div class="adminItem">
<h2>{{pageTitle}}</h2>
<div class='errors hl'>
{{#each errors as |error|}}
<p>{{error.msg}}</p>
{{/each}}
</div>
<div class='formContainer'>
<form action='{{postLink}}' method='post'>
<input type='email' name='email' id='email' placeholder='Email address of new {{newType}}' required/>
<input type='submit' class='btn btn--primary btn--full' value='Add {{newType}}'/>
</form>
</div>
</div>
</section>