mirror of
https://github.com/redstrate/Kawari.git
synced 2025-06-30 11:47:45 +00:00
15 lines
519 B
HTML
15 lines
519 B
HTML
{% extends "account_base.html" %}
|
|
|
|
{% block title %}Restore Backup{% endblock %}
|
|
{% set current_page = "restore" %}
|
|
|
|
{% block accountbody %}
|
|
<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 %}
|