1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-05-06 12:47:45 +00:00
kawari/resources/templates/account.html

17 lines
554 B
HTML
Raw Normal View History

{% extends "account_base.html" %}
{% block title %}Manage Account{% endblock %}
{% set current_page = "home" %}
{% block accountbody %}
<!-- TODO: Move to it's own page. -->
<h2>Upload Character Backup</h2>
<form method='post' enctype="multipart/form-data">
<div class="mb-3">
<label for="charbak" class="form-label">Backup file</label>
<input type="file" id="charbak" name="charbak" accept="application/zip" class="form-control"/>
</div>
<button type='submit' class="btn btn-primary">Upload</button>
</form>
{% endblock %}