22adb4d5fd
The primary license of the project is changing to: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later with some specific files to be licensed under the one of two licenses: CC0-1.0 LGPL-3.0-or-later This commit is one of the many steps to relicense the entire codebase. Documentation granting permission for this relicensing (from all past contributors who hold copyrights) is on file with Software Freedom Conservancy, Inc.
17 lines
888 B
Text
17 lines
888 B
Text
<%- # License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later -%>
|
|
<form autosubmit action="/users" method="post" parsley-validate data-reload>
|
|
<input type="text" name="user[profile_attributes][name]" required placeholder="Name" class="parsley-validated">
|
|
|
|
<input type="email" name="user[email]" placeholder="Email" required class="parsley-validated">
|
|
|
|
<input type="password" required name="user[password]" placeholder="New Password" parsley-minlength="7" parsley-minlength-message="Please enter at least 7 characters" class="parsley-validated">
|
|
|
|
<input type="password" required name="user[password_confirmation]" placeholder="Confirm Password" class="parsley-validated">
|
|
|
|
<div class='u-centered'>
|
|
<p class='error'></p>
|
|
<button type="submit" data-loading="Submitting..." class="button--small" >
|
|
Sign Up
|
|
</button>
|
|
</div>
|
|
</form>
|