mirror of
https://github.com/matt-fidd/stratos.git
synced 2026-01-02 14:39:29 +00:00
Added register template and route
This commit is contained in:
17
views/register.hbs
Normal file
17
views/register.hbs
Normal file
@@ -0,0 +1,17 @@
|
||||
{{> 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>
|
||||
Reference in New Issue
Block a user