20 lines
752 B
Text
20 lines
752 B
Text
<%- # License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
|
|
# Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE -%>
|
|
<label>Your Name</label>
|
|
<input type='text' name='user[profile_attributes][name]' placeholder='Name' class='u-marginTop--0' required>
|
|
|
|
<label>Your Email Address</label>
|
|
<input type='email' name='user[email]' placeholder='Email' required>
|
|
|
|
<label>Password</label>
|
|
<input type='password' required
|
|
id='new-user-password-input'
|
|
name='user[password]'
|
|
placeholder='New Password'
|
|
parsley-minlength='7'
|
|
parsley-minlength-message='Please enter at least 7 characters'>
|
|
|
|
<label>Confirm Password</label>
|
|
<input type='password' required
|
|
name='user[password_confirmation]'
|
|
placeholder='Confirm Password'>
|