hacky charxml uploader until i do it the right way

This commit is contained in:
aronwk-aaron
2022-10-16 22:14:12 -05:00
parent f54e9bf9b4
commit dce4466487
5 changed files with 65 additions and 2 deletions

View File

@@ -0,0 +1,22 @@
{% extends 'base.html.j2' %}
{% block title %}
Character XML Upload
{% endblock title %}
{% block content_before %}
Character XML Upload
{% endblock content_before %}
{% block content %}
<h3 style="color: orange;">PROCEED WITH CAUTION</h3>
<form method=post>
{{ form.csrf_token }}
<div class="card shadow-sm mx-auto pb-3 bg-dark border-primary" style="width: 20rem;">
<div class="card-body">
{{ helper.render_field(form.char_xml) }}
{{ helper.render_submit_field(form.submit) }}
</div>
</div>
</form>
{% endblock %}