2014-03-17 16:36:32 +01:00
|
|
|
.row
|
|
|
|
|
.page-header
|
|
|
|
|
%h1.text-center Sign Up
|
|
|
|
|
.col-md-5.col-md-offset-1
|
|
|
|
|
.well
|
2014-06-18 16:58:30 +03:00
|
|
|
= semantic_form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f|
|
2013-01-17 16:27:03 +01:00
|
|
|
= f.input :email
|
|
|
|
|
= f.input :password
|
|
|
|
|
= f.input :password_confirmation
|
2014-06-18 16:58:30 +03:00
|
|
|
= f.action :submit, as: :button, label: 'Sign Up', button_html: {class: 'btn btn-primary'}
|
|
|
|
|
%br
|
|
|
|
|
%br
|
|
|
|
|
%h4 Already have an account?
|
|
|
|
|
= render 'devise/shared/links'
|
|
|
|
|
.col-md-4
|
2014-03-17 16:36:32 +01:00
|
|
|
.well
|
2014-06-18 16:58:30 +03:00
|
|
|
%h4 Or use your openID
|
|
|
|
|
|
2014-06-19 14:03:49 +03:00
|
|
|
= render 'devise/shared/openid'
|