1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-05-07 13:07:45 +00:00
kawari/resources/templates/account.html
Joshua Goins bf089b3bec Don't include web templates in binaries
I plan on including some Bootstrap styling, and I don't want that to
bloat the binaries. This also means people can easily modify the pages
if they want.
2025-05-03 11:32:37 -04:00

11 lines
474 B
HTML

<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>