mirror of
https://github.com/projekteuler/projekteuler.git
synced 2026-01-27 18:48:49 +01:00
Add devise-bootstrap-views
This commit is contained in:
30
app/views/devise/registrations/edit.html.erb
Normal file
30
app/views/devise/registrations/edit.html.erb
Normal file
@@ -0,0 +1,30 @@
|
||||
<%= bootstrap_devise_error_messages! %>
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h4><%= t('.title', :resource => resource_class.model_name.human , :default => 'Edit #{resource_name.to_s.humanize}') %></h4>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<%= form_for(resource, :as => resource_name, :url => registration_path(resource_name), :html => { :method => :put }) do |f| %>
|
||||
<div class="form-group">
|
||||
<%= f.label :email %>
|
||||
<%= f.email_field :email, autofocus: true, class: "form-control" %>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<%= f.label :password %> <i>(<%= t('.leave_blank_if_you_don_t_want_to_change_it', :default => "leave blank if you don't want to change it") %>)</i><br />
|
||||
<%= f.password_field :password, :autocomplete => "off", class: "form-control" %>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<%= f.label :password_confirmation %><br />
|
||||
<%= f.password_field :password_confirmation, class: "form-control" %>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<%= f.label :current_password %> <i>(<%= t('.we_need_your_current_password_to_confirm_your_changes', :default => 'we need your current password to confirm your changes') %>)</i>
|
||||
<%= f.password_field :current_password, class: "form-control" %>
|
||||
</div>
|
||||
<%= f.submit t('.update', :default => "Update"), class: "btn btn-primary" %></div>
|
||||
<% end %>
|
||||
</div>
|
||||
|
||||
<p><%= t('.unhappy', :default => 'Unhappy') %>? <%= link_to t('.cancel_my_account', :default => "Cancel my account"), registration_path(resource_name), :data => { :confirm => t('.are_you_sure', :default => "Are you sure?") }, :method => :delete %>.</p>
|
||||
|
||||
<%= link_to "Back", :back %>
|
||||
24
app/views/devise/registrations/new.html.erb
Normal file
24
app/views/devise/registrations/new.html.erb
Normal file
@@ -0,0 +1,24 @@
|
||||
<%= bootstrap_devise_error_messages! %>
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
<h4><%= t('.sign_up', :default => "Sign up") %></h4>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
<%= form_for(resource, :as => resource_name, :url => registration_path(resource_name), html: { role: "form" }) do |f| %>
|
||||
<div class="form-group">
|
||||
<%= f.label :email %>
|
||||
<%= f.email_field :email, autofocus: true, class: "form-control" %>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<%= f.label :password %><br />
|
||||
<%= f.password_field :password, class: "form-control" %>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<%= f.label :password_confirmation %>
|
||||
<%= f.password_field :password_confirmation, class: "form-control" %>
|
||||
</div>
|
||||
<%= f.submit t('.sign_up', :default => "Sign up"), class: "btn btn-primary" %>
|
||||
<% end %>
|
||||
</div>
|
||||
</div>
|
||||
<%= render "devise/shared/links" %>
|
||||
Reference in New Issue
Block a user