mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-25 11:38:49 +01:00
32 lines
838 B
Text
32 lines
838 B
Text
<div title="Account signup" id="signupform" class="form">
|
|
<% form_tag :action=> "create" do %>
|
|
|
|
<%= error_messages_for 'user' %><br/>
|
|
|
|
<%= render_flash %>
|
|
|
|
<h3><%= @heading -%></h3>
|
|
|
|
<table>
|
|
<tr>
|
|
<td><label for="user_login">Desired login:</label></td>
|
|
<td> <%= text_field "user", "login", :size => 20 %></td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for="user_password">Choose password:</label></td>
|
|
<td><%= password_field "user", "password", :size => 20 %></td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for="user_password_confirmation">Confirm password:</label></td>
|
|
<td><%= password_field "user", "password_confirmation", :size => 20 %></td>
|
|
</tr>
|
|
<tr>
|
|
<td></td>
|
|
<td><input type="submit" id="signup" value="Signup »" class="primary" /></td>
|
|
</tr>
|
|
</table>
|
|
|
|
<% end %>
|
|
</div>
|
|
|
|
|