mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
20 lines
813 B
Text
20 lines
813 B
Text
.container
|
|
.row
|
|
.col-md-6.col-md-offset-3
|
|
.panel.panel-default
|
|
.panel-heading
|
|
%h3.panel-title
|
|
Sign in
|
|
.panel-body
|
|
= semantic_form_for "", method: :post, enctype: 'application/x-www-form-urlencoded', url: @login_url do |f|
|
|
= f.input :url, as: :hidden, input_html: { value: @back_url }
|
|
= f.input :context, as: :hidden, input_html: { value: @context }
|
|
= f.input :proxypath, as: :hidden, input_html: { value: @proxypath }
|
|
|
|
= f.input :username, input_html: { autofocus: true }
|
|
= f.input :password, as: :password
|
|
|
|
%p.text-right
|
|
= f.action :submit, as: :button, label: 'Sign In', button_html: { class: 'btn btn-success' }
|
|
|
|
= render partial: 'devise/shared/help'
|