Move back paragraph tag in confirmations view

This commit is contained in:
Raphael 2010-08-17 17:48:00 -07:00
parent bb85c46be1
commit 7186f3537a
2 changed files with 3 additions and 2 deletions

View file

@ -5,5 +5,6 @@
= f.label :email = f.label :email
%br/ %br/
= f.text_field :email = f.text_field :email
%p= f.submit "Resend confirmation instructions" %p
= f.submit "Resend confirmation instructions"
= render :partial => "devise/shared/links" = render :partial => "devise/shared/links"

View file

@ -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, #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 #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 'login', :to => 'devise/sessions#new', :as => "new_user_session"
match 'logout', :to => 'devise/sessions#destroy', :as => "destroy_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" match 'get_to_the_choppa', :to => 'devise/registrations#new', :as => "new_user_registration"