5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-09-29 01:16:57 +00:00
panel/views/login.haml

15 lines
566 B
Text
Raw Normal View History

2017-09-26 15:43:31 +00:00
.row.align-items-center.justify-content-center.full-height
.col-md-6.align-self-center
- if flash[:error]
.alert.alert-danger{role: 'alert'}
= flash[:error]
2017-09-25 22:35:06 +00:00
2017-09-26 15:43:31 +00:00
%form{method: 'post', action: '/login'}
.form-group
%input{type: 'email', name: 'username', class: 'form-control', placeholder: 'Correo'}
.form-group
%input{type: 'password', name: 'password', class: 'form-control', placeholder: 'Contraseña'}
2017-09-25 22:35:06 +00:00
2017-09-26 15:43:31 +00:00
.form-group
%input{type: 'submit', value: 'Ingresar', class: 'btn btn-lg btn-primary btn-block'}