mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-24 19:20:13 +01:00
31 lines
935 B
Text
31 lines
935 B
Text
<div title="<%= t('users.account_signup') %>" id="signupform" class="form">
|
|
<%= form_tag :action=> "create" do %>
|
|
|
|
<%= get_list_of_error_messages_for @user %><br/>
|
|
|
|
<%= render_flash %>
|
|
|
|
<h3><%= @heading -%></h3>
|
|
|
|
<table>
|
|
<tr>
|
|
<td><label for="user_login"><%= t('users.desired_login') %>:</label></td>
|
|
<td> <%= text_field "user", "login", :size => 20 %></td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for="user_password"><%= t('users.choose_password') %>:</label></td>
|
|
<td><%= password_field "user", "password", :size => 20 %></td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for="user_password_confirmation"><%= t('users.confirm_password') %>:</label></td>
|
|
<td><%= password_field "user", "password_confirmation", :size => 20 %></td>
|
|
</tr>
|
|
<tr>
|
|
<td></td>
|
|
<td><input type="submit" id="signup" value="<%= t('users.signup') %> »" class="primary" /></td>
|
|
</tr>
|
|
</table>
|
|
<%end-%>
|
|
</div>
|
|
|
|
|