mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
* Cleanup the CSS * Fix more views then you have fingers and toes * Introduce position(weight) for sponsor levels * Fix bootstrap/datatable integration
34 lines
1.2 KiB
Text
34 lines
1.2 KiB
Text
.container
|
|
.row
|
|
.col-md-6.col-md-offset-3
|
|
.panel.panel-default
|
|
.panel-heading
|
|
%h3.panel-title
|
|
Sign Up
|
|
.panel-body
|
|
= semantic_form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f|
|
|
= f.input :username, required: true
|
|
= f.input :email
|
|
= f.input :name, required: true
|
|
= f.input :password
|
|
= f.input :password_confirmation
|
|
%p.text-right
|
|
= f.action :submit, as: :button, label: 'Sign Up', button_html: {class: 'btn btn-success' }
|
|
- unless omniauth_configured.empty?
|
|
.row
|
|
.col-md-4
|
|
%hr
|
|
.col-md-4
|
|
%h4.text-center
|
|
or sign up using
|
|
.col-md-4
|
|
%hr
|
|
.row
|
|
.col-md-12
|
|
#openidlinks
|
|
= render 'devise/shared/openid'
|
|
%p.text-right
|
|
%a.small{"data-toggle" => "collapse", "data-target" => "#devise-help"}
|
|
Need Help?
|
|
#devise-help.collapse
|
|
= render 'devise/shared/links'
|