Sha256: 976b11b61af847dca08489bda16940a82b5d1d3b202ee2b3eb7aba8c26865206
Contents?: true
Size: 981 Bytes
Versions: 9
Compression:
Stored size: 981 Bytes
Contents
<%- @title = p_("MultiAuth", "Signup") -%> <h1><%=h p_("MultiAuth", "Signup by email address") %></h1> <%= render(:partial => "progress", :locals => {:step => 1}) %> <%- form_for(:signup_form, @signup_form, :url => {:action => "validate"}) { |f| -%> <table> <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(p_("MultiAuth", "Confirm")) %></div> <%- } -%> <%- unless production? -%> <div class="debug"> <%= error_messages_for(:signup_form) %> </div> <%- end -%>
Version data entries
9 entries across 9 versions & 2 rubygems