diff options
author | gitlabhq <m@gitlabhq.com> | 2011-10-09 00:36:38 +0300 |
---|---|---|
committer | gitlabhq <m@gitlabhq.com> | 2011-10-09 00:36:38 +0300 |
commit | 9ba1224867665844b117fa037e1465bb706b3685 (patch) | |
tree | 52fbfc1cdb55df21843965479c97be0c91121a9a /app/views/devise/registrations | |
parent | 93efff945215a4407afcaf0cba15ac601b56df0d (diff) | |
download | gitlab-ce-9ba1224867665844b117fa037e1465bb706b3685.tar.gz |
init commit
Diffstat (limited to 'app/views/devise/registrations')
-rw-r--r-- | app/views/devise/registrations/edit.html.erb | 28 | ||||
-rw-r--r-- | app/views/devise/registrations/new.html.erb | 18 |
2 files changed, 46 insertions, 0 deletions
diff --git a/app/views/devise/registrations/edit.html.erb b/app/views/devise/registrations/edit.html.erb new file mode 100644 index 00000000000..dd26e8a47b8 --- /dev/null +++ b/app/views/devise/registrations/edit.html.erb @@ -0,0 +1,28 @@ +<h2>Edit <%= resource_name.to_s.humanize %></h2> + +<%= form_for(resource, :as => resource_name, :url => registration_path(resource_name), :html => { :method => :put }) do |f| %> + <%= devise_error_messages! %> + + <div><%= f.label :email %><br /> + <%= f.email_field :email %></div> + + <div><%= f.label :name %><br /> + <%= f.text_field :name %></div> + + <div><%= f.label :password %> <i>(leave blank if you don't want to change it)</i><br /> + <%= f.password_field :password %></div> + + <div><%= f.label :password_confirmation %><br /> + <%= f.password_field :password_confirmation %></div> + + <div><%= f.label :current_password %> <i>(we need your current password to confirm your changes)</i><br /> + <%= f.password_field :current_password %></div> + +<div><%= f.submit "Update", :class => "input_button" %></div> +<% end %> + +<h3>Cancel my account</h3> + +<p>Unhappy? <%= link_to "Cancel my account", registration_path(resource_name), :confirm => "Are you sure?", :method => :delete %>.</p> + +<%= link_to "Back", :back %> diff --git a/app/views/devise/registrations/new.html.erb b/app/views/devise/registrations/new.html.erb new file mode 100644 index 00000000000..4ac617c5912 --- /dev/null +++ b/app/views/devise/registrations/new.html.erb @@ -0,0 +1,18 @@ +<h2>Sign up</h2> + +<%= form_for(resource, :as => resource_name, :url => registration_path(resource_name)) do |f| %> + <%= devise_error_messages! %> + + <div><%= f.label :email %><br /> + <%= f.email_field :email %></div> + + <div><%= f.label :password %><br /> + <%= f.password_field :password %></div> + + <div><%= f.label :password_confirmation %><br /> + <%= f.password_field :password_confirmation %></div> + +<div><%= f.submit "Sign up", :class => "input_button" %></div> +<% end %> + +<%= render :partial => "devise/shared/links" %> |