You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
844 B
29 lines
844 B
.row
|
|
.offset-sm-2.col-sm-8
|
|
%h3 Register A New Account
|
|
= form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f|
|
|
= devise_error_messages!
|
|
|
|
.form-group
|
|
= f.label :email
|
|
%br/
|
|
= f.email_field :email, autofocus: true, class: 'form-control'
|
|
|
|
.form-group
|
|
= f.label :password
|
|
- if @minimum_password_length
|
|
%em
|
|
(#{@minimum_password_length} characters minimum)
|
|
%br/
|
|
= f.password_field :password, autocomplete: "off", class: 'form-control'
|
|
|
|
.form-group
|
|
= f.label :password_confirmation
|
|
%br/
|
|
= f.password_field :password_confirmation, autocomplete: "off", class: 'form-control'
|
|
|
|
.form-group
|
|
= f.submit "Sign Up", class: 'btn btn-primary'
|
|
|
|
= render "devise/shared/links"
|