extends layout

block content
  .row
    .col-md-8
      p.lead Sign in with email
      form.form-horizontal(role='form', method='POST', action='/auth/login')
        .form-group
          label.col-sm-2.control-label(for='email') Email
          .col-sm-8
            input#email.form-control(type='text', name='email', value='')
        .form-group
          label.col-sm-2.control-label(for='password') Password
          .col-sm-8
            input#password.form-control(type='password', name='password', value='')
        .form-group
          .col-sm-offset-2.col-sm-8
            button.btn.btn-primary(type='submit')
              i.fa.btn-xs.fa-lock
              |  Login
      p.lead
        | Or click here to &nbsp;
        a(href='/auth/register') Sign Up
    .col-md-4(style='text-align: left;')
      p.lead Or sign in with ...
      a.btn.btn-block.btn-social.btn-twitter(href='/auth/o/twitter')
        i.fa.btn-xs.fa-twitter
        |  Sign in with Twitter
      a.btn.btn-block.btn-social.btn-instagram(href='/auth/o/instagram')
        i.fa.btn-xs.fa-instagram
        |  Sign in with Instagram
      a.btn.btn-block.btn-social.btn-facebook(href='/auth/o/facebook')
        i.fa.btn-xs.fa-facebook
        |  Sign in with Facebook
      a.btn.btn-block.btn-social.btn-github(href='/auth/o/github')
        i.fa.btn-xs.fa-github
        |  Sign in with Github
      a.btn.btn-block.btn-social.btn-google(href='/auth/o/google')
        i.fa.btn-xs.fa-google
        |  Sign in with Google
