freeCodeCamp/views/account/login.jade

67 lines
2.6 KiB
Plaintext
Raw Normal View History

extends ../layout
2013-11-16 18:24:06 +00:00
block content
.jumbotron.text-center
2014-11-30 23:23:12 +00:00
h2 Sign in with one of these options:
a.btn.btn-lg.btn-block.btn-google-plus.btn-social(href='/auth/google')
i.fa.fa-google-plus
| Sign in with Google
2014-12-02 04:26:31 +00:00
a.btn.btn-lg.btn-block.btn-github.btn-social(href='/auth/github')
i.fa.fa-github
| Sign in with GitHub
2014-11-30 23:23:12 +00:00
a.btn.btn-lg.btn-block.btn-facebook.btn-social(href='/auth/facebook')
i.fa.fa-facebook
| Sign in with Facebook
a.btn.btn-lg.btn-block.btn-linkedin.btn-social(href='/auth/linkedin')
i.fa.fa-linkedin
| Sign in with LinkedIn
2014-11-30 07:01:49 +00:00
a.btn.btn-lg.btn-block.btn-twitter.btn-social(href='/auth/twitter')
i.fa.fa-twitter
| Sign in with Twitter
2014-11-30 07:52:30 +00:00
hr
2014-11-30 23:23:12 +00:00
h2 Or you can use an email address:
2014-11-30 08:10:21 +00:00
form.form-horizontal(id='signup-form', action='signup', method='POST')
2014-11-30 07:52:30 +00:00
input(type='hidden', name='_csrf', value=_csrf)
.form-group
.col-sm-6.col-sm-offset-3
2014-11-30 08:10:21 +00:00
input.form-control(type='email', name='email', id='email', placeholder='Email', autofocus=true)
2014-11-30 07:52:30 +00:00
.form-group
.col-sm-6.col-sm-offset-3
input.form-control(type='password', name='password', id='password', placeholder='Password')
.form-group
.col-sm-6.col-sm-offset-3
input.form-control(type='password', name='confirmPassword', id='confirmPassword', placeholder='Confirm Password')
.form-group
.col-sm-offset-3.col-sm-6
button.btn.btn-success(type='submit')
span.ion-person-add
2014-11-30 08:10:21 +00:00
| Sign up
2014-11-30 07:52:30 +00:00
hr
2014-11-30 23:23:12 +00:00
h2 If you previously signed up with your email address, sign in here:
2014-11-30 08:10:21 +00:00
form(action='login', method='POST')
2014-11-30 05:32:59 +00:00
input(type='hidden', name='_csrf', value=_csrf)
2014-11-30 07:52:30 +00:00
.col-sm-6.col-sm-offset-3
2014-11-30 05:32:59 +00:00
.form-group
2014-11-30 08:10:21 +00:00
input.form-control(type='email', name='email', id='email', placeholder='Email')
2014-11-30 05:32:59 +00:00
.form-group
input.form-control(type='password', name='password', id='password', placeholder='Password')
.form-group
button.btn.btn-primary(type='submit')
span.ion-android-hand
2014-11-30 08:10:21 +00:00
| Sign in
2014-11-30 07:52:30 +00:00
span   
a.btn.btn-info(href='/forgot') Forgot your password?
2014-11-30 23:23:12 +00:00
.col-sm-12
h2 You can trust us with your 
2014-12-01 04:47:10 +00:00
a(href="http://www.freecodecamp.com/privacy") privacy
2014-11-30 23:23:12 +00:00
| .
br
br
br
br
br
br
br
br
br
2014-11-30 23:23:12 +00:00