freeCodeCamp/views/account/email-signin.jade

27 lines
1.0 KiB
Plaintext
Raw Normal View History

extends ../layout
2013-11-16 18:24:06 +00:00
block content
2015-01-10 01:52:19 +00:00
.jumbotron.text-center(ng-controller="emailSignInController")
h2 Sign in with an email address here:
form(method='POST', action='/email-signin')
input(type='hidden', name='_csrf', value=_csrf)
.col-sm-6.col-sm-offset-3
.form-group
input.form-control(type='email', name='email', id='email', placeholder='Email', ng-model='email', autofocus=true)
| {{ $scope.email }}
.form-group
input.form-control(type='password', name='password', id='password', placeholder='Password', ng-model='password')
.form-group
button.btn.btn-primary(type='submit')
span.ion-android-hand
| Login
span   
2015-01-10 01:52:19 +00:00
a.btn.btn-info(href='/forgot') Forgot your password?
br
br
br
br
br
br
br
br
br