blob: 30194fdfaf61955902f3dc48daee90e18e7cffb6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#sessions_new.row
= render 'devise/shared/intro'
.col-md-4.login
.panel.panel-default
.panel-heading = t('.title')
.panel-body
= simple_form_for(resource, :as => resource_name, :url => confirmation_path(resource_name), html: { :class => 'form-horizontal user', method: :post } ) do |form|
= form.input :email, :label => false, input_html: { :class => "form-control" }
.row
.col-md-12
= form.button :submit, t('.title'), class: 'btn-primary'
.row.options
.col-md-12.new_password
= link_to t('devise.links.sign_in'), new_session_path(resource_name)
|