Removed .row from login form

This commit is contained in:
Sahat Yalkabov
2014-03-07 14:42:37 -05:00
parent d4b03f7dd2
commit e8365c7321

View File

@ -4,38 +4,37 @@ block content
form(method='POST') form(method='POST')
legend Sign In legend Sign In
input(type='hidden', name='_csrf', value=token) input(type='hidden', name='_csrf', value=token)
.row .col-sm-8.col-sm-offset-2
.col-sm-8.col-sm-offset-2 if secrets.localAuth
if secrets.localAuth .form-group
.form-group label.control-label(for='email') Email
label.control-label(for='email') Email input.form-control(type='text', name='email', id='email', placeholder='Email', autofocus=true)
input.form-control(type='text', name='email', id='email', placeholder='Email', autofocus=true) .form-group
.form-group label.control-label(for='password') Password
label.control-label(for='password') Password input.form-control(type='password', name='password', id='password', placeholder='Password')
input.form-control(type='password', name='password', id='password', placeholder='Password') .form-group
.form-group button.btn.btn-primary(type='submit')
button.btn.btn-primary(type='submit') i.fa.fa-unlock-alt
i.fa.fa-unlock-alt | Login
| Login a.btn.btn-link(href='/forgot') Forgot your password?
a.btn.btn-link(href='/forgot') Forgot your password? hr
hr if secrets.facebookAuth
if secrets.facebookAuth a.btn.btn-block.btn-facebook.btn-social(href='/auth/facebook')
a.btn.btn-block.btn-facebook.btn-social(href='/auth/facebook') i.fa.fa-facebook
i.fa.fa-facebook | Sign in with Facebook
| Sign in with Facebook if secrets.twitterAuth
if secrets.twitterAuth a.btn.btn-block.btn-twitter.btn-social(href='/auth/twitter')
a.btn.btn-block.btn-twitter.btn-social(href='/auth/twitter') i.fa.fa-twitter
i.fa.fa-twitter | Sign in with Twitter
| Sign in with Twitter if secrets.googleAuth
if secrets.googleAuth a.btn.btn-block.btn-google-plus.btn-social(href='/auth/google')
a.btn.btn-block.btn-google-plus.btn-social(href='/auth/google') i.fa.fa-google-plus
i.fa.fa-google-plus | Sign in with Google
| Sign in with Google if secrets.githubAuth
if secrets.githubAuth a.btn.btn-block.btn-github.btn-social(href='/auth/github')
a.btn.btn-block.btn-github.btn-social(href='/auth/github') i.fa.fa-github
i.fa.fa-github | Sign in with GitHub
| Sign in with GitHub if secrets.linkedinAuth
if secrets.linkedinAuth a.btn.btn-block.btn-linkedin.btn-social(href='/auth/linkedin')
a.btn.btn-block.btn-linkedin.btn-social(href='/auth/linkedin') i.fa.fa-linkedin
i.fa.fa-linkedin | Sign in with LinkedIn
| Sign in with LinkedIn