Move back paragraph tag in confirmations view
This commit is contained in:
parent
bb85c46be1
commit
7186f3537a
2 changed files with 3 additions and 2 deletions
|
|
@ -5,5 +5,6 @@
|
|||
= f.label :email
|
||||
%br/
|
||||
= f.text_field :email
|
||||
%p= f.submit "Resend confirmation instructions"
|
||||
%p
|
||||
= f.submit "Resend confirmation instructions"
|
||||
= render :partial => "devise/shared/links"
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ Diaspora::Application.routes.draw do |map|
|
|||
|
||||
#routes for devise, not really sure you will need to mess with this in the future, lets put default,
|
||||
#non mutable stuff in anohter file
|
||||
devise_for :users, :path_names => {:sign_up => "get_to_the_choppa", :sign_in => "login", :sign_out => "logout"}
|
||||
devise_for :users, :path_names => {:sign_up => "get_to_the_choppa", :sign_in => "login", :sign_out => "logout", :confirmation => 'confirmation'}
|
||||
match 'login', :to => 'devise/sessions#new', :as => "new_user_session"
|
||||
match 'logout', :to => 'devise/sessions#destroy', :as => "destroy_user_session"
|
||||
match 'get_to_the_choppa', :to => 'devise/registrations#new', :as => "new_user_registration"
|
||||
|
|
|
|||
Loading…
Reference in a new issue