1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-05-07 05:07:44 +00:00
kawari/resources/templates/account.html
Joshua Goins f2c009b9a7 Add Bootstrap styling to most web pages
I haven't changed any of the content yet, only included the Boostrap CSS
and unified their base template.
2025-05-03 11:56:27 -04:00

17 lines
582 B
HTML

{% extends "layout.html" %}
{% block title %}Manage Account{% endblock %}
{% block body %}
<p>Managing account {{ username }}</p>
<a href="/account/app/svc/logout">Logout</a>
<a href="/account/app/svc/mbrPasswd">Change Password</a>
<a href="/account/app/svc/mbrCancel">Cancel Account</a>
<!-- TODO: Move to it's own page. -->
<form method='post' enctype="multipart/form-data">
<label for="charbak">Upload character backup:</label>
<input type="file" id="charbak" name="charbak" accept="application/zip" />
<button type='submit'>Upload</button>
</form>
{% endblock %}