_form.rhtml

来自「用ruby on rails写的一个博客程序,还不错..ruby on rail」· RHTML 代码 · 共 49 行

RHTML
49
字号
<%= 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"><%= _("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]-->

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?