Public archive for the Return to Ritherdon project. https://www.nicolaellisandritherdon.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 lines
721 B

{% extends "layouts/default.html" %}
{% block title %}Create a new account.{% endblock %}
{% block content %}
<div>
<form action="/sign-up" method="post">
<fieldset>
<legend>Account Details</legend>
<input type="hidden" name="AUTHENTICITY-TOKEN" value="{{token}}">
<label>Username</label>
<input required type="text" name="USERNAME">
<label>Display Name</label>
<input required type="text" name="DISPLAY-NAME">
<label>Password</label>
<input required type="password" name="PASSWORD">
<label>Password Check</label>
<input required type="password" name="PASSWORD-CHECK">
<input type="submit" value="Create Account">
</fieldset>
</form>
</div>
{% endblock %}