Skip to content

Commit

Permalink
Added p tags
Browse files Browse the repository at this point in the history
  • Loading branch information
bcardarella committed May 16, 2012
1 parent 26085b2 commit c72944c
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 13 deletions.
9 changes: 9 additions & 0 deletions Gemfile.lock
Expand Up @@ -50,6 +50,14 @@ GEM
capybara-email (0.1.2)
childprocess (0.3.1)
ffi (~> 1.0.6)
columnize (0.3.6)
debugger (1.1.1)
columnize (>= 0.3.1)
debugger-linecache (~> 1.1)
debugger-ruby_core_source (~> 1.1)
debugger-linecache (1.1.1)
debugger-ruby_core_source (>= 1.1.1)
debugger-ruby_core_source (1.1.1)
diff-lcs (1.1.3)
erubis (2.7.0)
factory_girl (2.6.0)
Expand Down Expand Up @@ -143,6 +151,7 @@ DEPENDENCIES
bourne
capybara
capybara-email
debugger
easy_auth!
factory_girl_rails
jquery-rails
Expand Down
16 changes: 11 additions & 5 deletions app/views/password_reset/edit.html.erb
@@ -1,7 +1,13 @@
<%= form_for @identity, :url => main_app.edit_password_path(params[:reset_token]) do |f| %>
<%= f.label :password %>
<%= f.text_field :password %>
<%= f.label :password_confirmation %>
<%= f.text_field :password_confirmation %>
<%= f.submit 'Submit' %>
<p>
<%= f.label :password %>
<%= f.text_field :password %>
</p>
<p>
<%= f.label :password_confirmation %>
<%= f.text_field :password_confirmation %>
</p>
<p>
<%= f.submit 'Submit' %>
</p>
<% end %>
10 changes: 7 additions & 3 deletions app/views/password_reset/new.html.erb
@@ -1,5 +1,9 @@
<%= form_for @identity, :url => main_app.password_reset_path do |f| %>
<%= f.label :username %>
<%= f.text_field :username %>
<%= f.submit 'Submit' %>
<p>
<%= f.label :username %>
<%= f.text_field :username %>
</p>
<p>
<%= f.submit 'Submit' %>
</p>
<% end %>
16 changes: 11 additions & 5 deletions app/views/sessions/new.html.erb
@@ -1,7 +1,13 @@
<%= form_for @identity, :url => main_app.sign_in_path do |f| %>
<%= f.label :username %>
<%= f.text_field :username %>
<%= f.label :password %>
<%= f.password_field :password %>
<%= f.submit 'Submit' %>
<p>
<%= f.label :username %>
<%= f.text_field :username %>
</p>
<p>
<%= f.label :password %>
<%= f.password_field :password %>
</p>
<p>
<%= f.submit 'Submit' %>
</p>
<% end %>

0 comments on commit c72944c

Please sign in to comment.