Sha256: 223aa05cec61f6fc2223afb8da78f3bcef3fcee4f3fcecc24a195111ee79396a

Contents?: true

Size: 599 Bytes

Versions: 3

Compression:

Stored size: 599 Bytes

Contents

<%% title "Sign up" %>

<p>Already have an account? <%%= link_to "Log in", login_path %>.</p>

<%% form_for @user do |f| %>
  <%%= f.error_messages %>
  <p>
    <%%= f.label :username %><br />
    <%%= f.text_field :username %>
  </p>
  <p>
    <%%= f.label :email, "Email Address" %><br />
    <%%= f.text_field :email %>
  </p>
  <p>
    <%%= f.label :password %><br />
    <%%= f.password_field :password %>
  </p>
  <p>
    <%%= f.label :password_confirmation, "Confirm Password" %><br />
    <%%= f.password_field :password_confirmation %>
  </p>
  <p><%%= f.submit "Sign up" %></p>
<%% end %>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
handy-generators-0.0.2 rails_generators/handy_setup/templates/views/signup.html.erb
handy-generators-0.0.1 rails_generators/handy_setup/templates/views/signup.html.erb
handy-generators-0.0.0 rails_generators/handy_setup/templates/views/signup.html.erb