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

Version Path
model_security_generator-0.0.3 templates/views/new.rhtml
model_security_generator-0.0.6 templates/views/new.rhtml
model_security_generator-0.0.1 templates/view_new.rhtml
model_security_generator-0.0.2 templates/views/new.rhtml
model_security_generator-0.0.5 templates/views/new.rhtml
model_security_generator-0.0.7 templates/views/new.rhtml
model_security_generator-0.0.8 templates/views/new.rhtml
model_security_generator-0.0.9 templates/views/new.rhtml