minor UI improvements on the Forgot Password and Register pages
This commit is contained in:
@@ -14,12 +14,11 @@
|
||||
</div>
|
||||
|
||||
<div class="content">
|
||||
<%= label_tag "Email Address" %>
|
||||
<%= text_field_tag :email, params[:email], {:class => "input input-block-level"} %>
|
||||
<%= text_field_tag :email, params[:email], {:class => "input input-block-level", :placeholder => "Email"} %>
|
||||
</div>
|
||||
|
||||
<div class="actions">
|
||||
<%= submit_tag "Reset Password", {:class => "btn btn-danger btn-large"} %>
|
||||
<%= submit_tag "Reset Password", {:class => "btn btn-info btn-large"} %>
|
||||
</div>
|
||||
|
||||
<div class="clearfix"></div>
|
||||
|
||||
@@ -13,22 +13,17 @@
|
||||
</div>
|
||||
|
||||
<div class="content">
|
||||
<%= f.label "Email Address" %>
|
||||
<%= f.text_field :email, {:class => "input input-block-level"} %>
|
||||
<%= f.text_field :email, {:class => "input input-block-level", :placeholder => "Email"} %>
|
||||
|
||||
<%= f.label "First Name" %>
|
||||
<%= f.text_field :first_name, {:class => "input input-block-level"} %>
|
||||
<%= f.text_field :first_name, {:class => "input input-block-level", :placeholder => "First Name"} %>
|
||||
|
||||
<%= f.label "Last Name" %>
|
||||
<%= f.text_field :last_name, {:class => "input input-block-level"} %>
|
||||
<%= f.text_field :last_name, {:class => "input input-block-level", :placeholder => "Last Name"} %>
|
||||
|
||||
<div class="control-group">
|
||||
<%= f.label :password, nil %>
|
||||
<%= f.password_field :password, {:class => "input input-block-level"}%>
|
||||
<%= f.password_field :password, {:class => "input input-block-level", :placeholder => "Password"}%>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<%= f.label :confirm_password %>
|
||||
<%= f.password_field :password_confirmation, {:class => "input input-block-level"}%>
|
||||
<%= f.password_field :password_confirmation, {:class => "input input-block-level", :placeholder => "Confirm Password"}%>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user