Sha256: 7aea1853ab12f08348de6a1b527ac748facb721a726d762cdc6434680ea8cdb9
Contents?: true
Size: 976 Bytes
Versions: 6
Compression:
Stored size: 976 Bytes
Contents
<%- @title = "サインアップ" -%> <h1>メールアドレスによるサインアップ</h1> <%= render(:partial => "progress", :locals => {:step => 1}) %> <%- form_for(:signup_form, @signup_form, :url => {:action => "validate"}) { |f| -%> <table border="1"> <tr> <th><%= f.label(:email) %></th> <td> <%= f.text_field(:email, :size => 30) %> <%= error_message_on(:signup_form, :email) %> <%= error_message_on(:credential, :email) %> </td> </tr> <tr> <th><%= f.label(:password) %></th> <td> <div><%= f.password_field(:password, :size => 20) %></div> <div><%= f.password_field(:password_confirmation, :size => 20) %></div> <%= error_message_on(:signup_form, :password) %> </td> </tr> </table> <div><%= submit_tag("確認画面へ") %></div> <%- } -%> <%- unless production? -%> <div class="debug"> <%= error_messages_for(:signup_form) %> </div> <%- end -%>
Version data entries
6 entries across 6 versions & 2 rubygems