1
0
mirror of https://github.com/matt-fidd/stratos.git synced 2026-01-01 22:59:28 +00:00

Added views for addClassUser pages

This commit is contained in:
2022-03-29 10:06:01 +00:00
parent 4c2a078530
commit 2c2c6b602f
2 changed files with 34 additions and 0 deletions

16
views/addClassUser.hbs Normal file
View File

@@ -0,0 +1,16 @@
<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>