Revision 2, 491 bytes
(checked in by falcon, 17 years ago)
|
added plugins
|
-
Property svn:executable set to
*
|
Line | |
---|
1 | <%%= error_messages_for :<%= file_name %> %> |
---|
2 | <%% form_for :<%= file_name %> do |f| -%> |
---|
3 | <p><label for="login">Login</label><br/> |
---|
4 | <%%= f.text_field :login %></p> |
---|
5 | |
---|
6 | <p><label for="email">Email</label><br/> |
---|
7 | <%%= f.text_field :email %></p> |
---|
8 | |
---|
9 | <p><label for="password">Password</label><br/> |
---|
10 | <%%= f.password_field :password %></p> |
---|
11 | |
---|
12 | <p><label for="password_confirmation">Confirm Password</label><br/> |
---|
13 | <%%= f.password_field :password_confirmation %></p> |
---|
14 | |
---|
15 | <p><%%= submit_tag 'Sign up' %></p> |
---|
16 | <%% end -%> |
---|