Sha256: 17e8da943dcd9df08b5a3c0a2333c36de664588a14d6bb46bfdddb7aead14a8e
Contents?: true
Size: 863 Bytes
Versions: 8
Compression:
Stored size: 863 Bytes
Contents
<h1>New user</h1> <%= error_messages_for 'user' %> <%= start_form_tag :action => 'new' %> <table> <tr> <th><label for="user_login">Login</label></th> <td><%= text_field 'user', 'login' %></td> </tr> <tr> <th><label for="user_name">Name</label></th> <td><%= text_field 'user', 'name' %></td> </tr> <tr> <th><label for="user_email">Email</label></th> <td><%= text_field 'user', 'email' %></td> </tr> <tr> <th><label for="user_password">Password</label></th> <td><%= password_field 'user', 'password' %></td> </tr> <tr> <th><label for="user_password_confirmation">Password again</label></th> <td><%= password_field 'user', 'password_confirmation' %></td> </tr> </table> <%= submit_tag "Create" %> <%= end_form_tag %> <%= link_to 'Back', :action => 'list' %>
Version data entries
8 entries across 8 versions & 1 rubygems