mirror of
https://github.com/matt-fidd/stratos.git
synced 2026-01-02 10:19:29 +00:00
18 lines
718 B
Handlebars
18 lines
718 B
Handlebars
{{> mainPageHeader name='Sign Up' }}
|
|
|
|
<div class='mainForm'>
|
|
<form action='/register' method='post'>
|
|
<div class='input-group'>
|
|
<input type='text' id='fname' name='fname' placeholder='First Name' required/>
|
|
<input type='text' id='lname' name='lname' placeholder='Last Name' required/>
|
|
</div>
|
|
|
|
<input type='email' id='email' name='email' placeholder='Email Address' required/>
|
|
<input type='password' id='password' name='password' placeholder='Password' required/>
|
|
<input type='password' id='confPassword' name='confPassword' placeholder='Confirm Password' required/>
|
|
|
|
<input type='submit' class='btn btn--primary' value='Sign Up'/>
|
|
</form>
|
|
<a href='/login'>Already got an account? Log in</a>
|
|
</div>
|