From e8365c7321432fc2f8d5232ee25c8152e51a8c55 Mon Sep 17 00:00:00 2001 From: Sahat Yalkabov Date: Fri, 7 Mar 2014 14:42:37 -0500 Subject: [PATCH] Removed .row from login form --- views/account/login.jade | 69 ++++++++++++++++++++-------------------- 1 file changed, 34 insertions(+), 35 deletions(-) diff --git a/views/account/login.jade b/views/account/login.jade index 2713f43fd2..5869ee6a31 100644 --- a/views/account/login.jade +++ b/views/account/login.jade @@ -4,38 +4,37 @@ block content form(method='POST') legend Sign In input(type='hidden', name='_csrf', value=token) - .row - .col-sm-8.col-sm-offset-2 - if secrets.localAuth - .form-group - label.control-label(for='email') Email - input.form-control(type='text', name='email', id='email', placeholder='Email', autofocus=true) - .form-group - label.control-label(for='password') Password - input.form-control(type='password', name='password', id='password', placeholder='Password') - .form-group - button.btn.btn-primary(type='submit') - i.fa.fa-unlock-alt - | Login - a.btn.btn-link(href='/forgot') Forgot your password? - hr - if secrets.facebookAuth - a.btn.btn-block.btn-facebook.btn-social(href='/auth/facebook') - i.fa.fa-facebook - | Sign in with Facebook - if secrets.twitterAuth - a.btn.btn-block.btn-twitter.btn-social(href='/auth/twitter') - i.fa.fa-twitter - | Sign in with Twitter - if secrets.googleAuth - a.btn.btn-block.btn-google-plus.btn-social(href='/auth/google') - i.fa.fa-google-plus - | Sign in with Google - if secrets.githubAuth - a.btn.btn-block.btn-github.btn-social(href='/auth/github') - i.fa.fa-github - | Sign in with GitHub - if secrets.linkedinAuth - a.btn.btn-block.btn-linkedin.btn-social(href='/auth/linkedin') - i.fa.fa-linkedin - | Sign in with LinkedIn \ No newline at end of file + .col-sm-8.col-sm-offset-2 + if secrets.localAuth + .form-group + label.control-label(for='email') Email + input.form-control(type='text', name='email', id='email', placeholder='Email', autofocus=true) + .form-group + label.control-label(for='password') Password + input.form-control(type='password', name='password', id='password', placeholder='Password') + .form-group + button.btn.btn-primary(type='submit') + i.fa.fa-unlock-alt + | Login + a.btn.btn-link(href='/forgot') Forgot your password? + hr + if secrets.facebookAuth + a.btn.btn-block.btn-facebook.btn-social(href='/auth/facebook') + i.fa.fa-facebook + | Sign in with Facebook + if secrets.twitterAuth + a.btn.btn-block.btn-twitter.btn-social(href='/auth/twitter') + i.fa.fa-twitter + | Sign in with Twitter + if secrets.googleAuth + a.btn.btn-block.btn-google-plus.btn-social(href='/auth/google') + i.fa.fa-google-plus + | Sign in with Google + if secrets.githubAuth + a.btn.btn-block.btn-github.btn-social(href='/auth/github') + i.fa.fa-github + | Sign in with GitHub + if secrets.linkedinAuth + a.btn.btn-block.btn-linkedin.btn-social(href='/auth/linkedin') + i.fa.fa-linkedin + | Sign in with LinkedIn \ No newline at end of file