Devise Registration with Notes Added
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h2>Sign up</h2> | |
<%= simple_form_for(resource, as: resource_name, url: user_registration_path) do |f| %> | |
<%= f.error_notification %> | |
<div class="form-inputs"> | |
<%= f.input :email, | |
required: true, | |
autofocus: true, | |
input_html: { autocomplete: "email" }%> | |
<%= f.input :password, | |
required: true, | |
hint: ("#{@minimum_password_length} characters minimum" if @minimum_password_length), | |
input_html: { autocomplete: "new-password" } %> | |
<%= f.input :password_confirmation, | |
required: true, | |
input_html: { autocomplete: "new-password" } %> | |
<%= f.input :notes, #here's the piece we're adding | |
required: true, | |
input_html: { autocomplete: "notes" } %> | |
</div> | |
<div class="form-actions"> | |
<%= f.button :submit, "Sign up" %> | |
</div> | |
<% end %> | |
<%= render "users/shared/links" %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment