.align
form#login(autocomplete="off", @submit.prevent="login" method="post")
b-form-group
h1 \{{ $t('login.login') }}
span Ingresa tus datos y comienza la aventura.
b-form-group
vm-input(icon='email-outline', :placeholder='$t("login.email")' v-model="form.email" required autofocus type="email")
span.help-block(v-if='authError')
strong \{{ $t('auth.failed') }}
b-form-group
vm-input(type="password" icon='lock-outline' :placeholder='$t("login.password")' v-model="form.password" required pass)
b-form-group#boxes
.d-flex.justify-content-between
vm-checkbox(v-model='form.rememberMe') \{{ $t('login.keep_connected') }}
router-link.content-vertical.text-secondary(to='/password/reset') \{{ $t('login.forgot_password') }}
b-form-group
vm-button#loginButton.vm-con-loading__container(color="primary", type="filled" width="100%") \{{ $t('login.login') }}
b-form-group
.social
vm-facebook(@social-login="socialAuth")
vm-google(@social-login="socialAuth")
b-form-group
.msg
span No tienes una cuenta?
router-link.content-vertical.text-secondary(to='/register') Crear cuenta.