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.
 
 
 
 
 
 

19 lines
646 B

{% extends "layouts/default.html" %}
{% block title%}Edit your accout settings.{%endblock%}
{% block content %}
<h2>Edit Account</h2>
<div>
<p>Note: Username cannot be changed.</p>
<form action="/user/edit" method="post">
<input type="hidden" name="AUTHENTICITY-TOKEN" value="{{token}}">
<label>Display Name</label>
<input type="text" name="DISPLAY-NAME" value="{{user.display-name}}">
<label>New Password</label>
<input type="password" name="NEW-PASSWORD">
<label>New Password Check</label>
<input type="password" name="PASSWORD-CHECK">
<input type="submit" value="Update Account">
</form>
</div>
{% endblock %}