29 lines
1.1 KiB
Plaintext
Executable File
29 lines
1.1 KiB
Plaintext
Executable File
<div class="module" style="padding:15px 25px 0px 25px;">
|
|
<div style="float:left; width:50%; height:330px; padding-right:10px;">
|
|
<h1>Welcome to Horses</h1>
|
|
<%= devise_error_messages! %>
|
|
</div>
|
|
<div style="float:right; width:45%; padding-left:30px; border-left:1px solid #e2e2e2;">
|
|
<%= form_for("user", :as => resource_name, :url => registration_path("user")) do |f| %>
|
|
<p>
|
|
Username: <br />
|
|
<%= f.text_field :username, :style => "font-size:2.2em", :autocomplete => "off" %><br />
|
|
</p>
|
|
<p>
|
|
Email Address: <br />
|
|
<%= f.text_field :email, :style => "font-size:2.2em", :autocomplete => "off" %><br />
|
|
</p>
|
|
<p>
|
|
Password:<br />
|
|
<%= f.password_field :password, :style => "font-size:2.2em", :autocomplete => "off" %><br />
|
|
</p>
|
|
<p>
|
|
Confirm Password:<br />
|
|
<%= f.password_field :password_confirmation, :style => "font-size:2.2em", :autocomplete => "off" %><br />
|
|
</p>
|
|
<p><%= f.submit "Sign up" %></p>
|
|
<% end %>
|
|
</div>
|
|
<div class="clear"></div>
|
|
</div>
|