mirror of
https://github.com/matt-fidd/stratos.git
synced 2026-01-01 18:19:25 +00:00
17 lines
492 B
Handlebars
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>
|