Sha256: f6a978f68364a7668c573c543a6da13a2c89ef5884cb2617ec7db4e84452408d
Contents?: true
Size: 1.41 KB
Versions: 9
Compression:
Stored size: 1.41 KB
Contents
<%= error_messages_for 'user' %> <!--[form:user]--> <p> <label for="user_login">Login:</label><br /> <%= text_field 'user', 'login' %> </p> <p> <label for="user_login">Display Name:</label><br/> <%= text_field 'user', 'name' %> </p> <p> <label for="user_email">Email:</label> <small>(this will be shown publically if supplied)</small><br/> <%= text_field 'user', 'email' %> </p> <p> <label for="user_jabber">Jabber:</label> <small>(this can be blank)</small><br/> <%= text_field 'user', 'jabber' %> </p> <p> <label for="user_password">Password:</label><br /> <%= password_field_tag 'user[password]', '', :id => 'user_password', :size => 30 %> </p> <p> <label for="user_password">Confirmation:</label><br /> <%= password_field 'user', 'password_confirmation' %> </p> <p> <label for="user_notify_via_email">Send notification messages via email?</label><br /> <%= check_box 'user', 'notify_via_email' %> </p> <p> <label for="user_notify_via_jabber">Send notification messages via jabber?</label><br /> <%= check_box 'user', 'notify_via_jabber' %> </p> <p> <label for="user_notify_on_new_articles">Send notification messages when new articles are posted?</label><br /> <%= check_box 'user', 'notify_on_new_articles' %> </p> <p> <label for="user_notify_on_comments">Send notification messages when comments are posted?</label><br /> <%= check_box 'user', 'notify_on_comments' %> </p> <!--[eoform:user]-->
Version data entries
9 entries across 9 versions & 1 rubygems