mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
33 lines
1.7 KiB
Text
33 lines
1.7 KiB
Text
.row
|
|
.col-md-12
|
|
= semantic_form_for(resource, :as => resource_name, :url => registration_path(resource_name), :html => { :method => :put }) do |f|
|
|
= f.inputs :name => "Profile" do
|
|
= f.fields_for :user do |u|
|
|
= u.input :name, :as => :string
|
|
= u.input :nickname, :as => :string
|
|
= u.input :affiliation, :as => :string, :hint => "This could be a company, a user group, or nothing at all."
|
|
= u.input :biography, :input_html => {:rows => 5, "onkeyup" => "word_count(this, 'biography-count', 150)"}
|
|
You have used
|
|
%span#biography-count #{current_user.biography_word_count}
|
|
words. Biographies are limited to 150 words.
|
|
%br
|
|
%br
|
|
= render :partial => 'devise/registrations/volunteeruser', :locals => {:u => u}
|
|
= f.inputs :name => 'OpenID' do
|
|
%h4
|
|
Currently using the following openIDs:
|
|
- @openids.each do |openid|
|
|
= openid.provider
|
|
= openid.email
|
|
%br
|
|
%h4
|
|
To add an openID to your account using a different email address, sign in with your
|
|
openID while logged in to OSEM
|
|
= render 'devise/shared/openid'
|
|
|
|
= f.inputs :name => "Account" do
|
|
= f.input :email, :required => false
|
|
= f.input :password, :hint => "(Leave blank if you don't want to change it)", :input_html => {:autocomplete => "off"}
|
|
= f.input :password_confirmation, :input_html => {:autocomplete => "off"}
|
|
= f.input :current_password, :input_html => {:autocomplete => "off"}, :hint => "(we need your current password to confirm password or email changes)"
|
|
= f.action :submit, :as => :button, :label => "Update", :button_html => {:class => "btn btn-primary"}
|