Created signup form
This commit is contained in:
@ -4,7 +4,6 @@ block content
|
|||||||
if message
|
if message
|
||||||
p= message
|
p= message
|
||||||
|
|
||||||
.row
|
|
||||||
.main
|
.main
|
||||||
h3
|
h3
|
||||||
| Please Login, or
|
| Please Login, or
|
||||||
|
@ -4,15 +4,24 @@ block content
|
|||||||
if message
|
if message
|
||||||
p= message
|
p= message
|
||||||
|
|
||||||
form(action='/login', method='post')
|
.main
|
||||||
div
|
h3 Signup Form
|
||||||
label Username:
|
form(role='form')
|
||||||
input(type='text', name='username')
|
.form-group
|
||||||
br
|
.row
|
||||||
div
|
.col-xs-6.col-md-6
|
||||||
label Password:
|
label(for='inputUsernameEmail') First Name
|
||||||
input(type='password', name='password')
|
input.form-control(name='firstname', type='text', required='', autofocus='')
|
||||||
div
|
.col-xs-6.col-md-6
|
||||||
input(type='submit', value='Submit')
|
label(for='inputUsernameEmail') Last Name
|
||||||
p
|
input.form-control(name='lastname', type='text', required='')
|
||||||
small Hint - bob:secret
|
.form-group
|
||||||
|
label(for='inputUsernameEmail') Email
|
||||||
|
input#inputUsernameEmail.form-control(type='text')
|
||||||
|
.form-group
|
||||||
|
label(for='inputPassword') Password
|
||||||
|
input#inputPassword.form-control(type='password')
|
||||||
|
.form-group
|
||||||
|
label(for='inputPassword') Confirm Password
|
||||||
|
input#inputPassword.form-control(type='password')
|
||||||
|
button.btn.btn.btn-primary(type='submit') Signup
|
Reference in New Issue
Block a user