Archipelago/WebHostLib/templates/check.html

24 lines
946 B
HTML
Raw Normal View History

2020-07-27 02:05:42 +00:00
{% extends 'layout.html' %}
{% block head %}
{{ super() }}
<title>Mystery Check Result</title>
<link rel="stylesheet" type="text/css" href="{{ static_autoversion("styles/uploads.css") }}" />
<script type="application/ecmascript" src="{{ static_autoversion("assets/uploads.js") }}"></script>
2020-07-27 02:05:42 +00:00
{% endblock %}
{% block body %}
<div id="uploads-wrapper">
<div id="uploads" class="main-content">
<h3>Upload Yaml</h3>
<p>This page checks a .yaml file for you, to be used as options for a mystery multiworld. You can also upload a .zip with multiple YAMLs.</p>
<div id="uploads-form-wrapper">
<form id="upload-form" method="post" enctype="multipart/form-data">
<input id="file-input" type="file" name="file">
</form>
<button id="upload-button">Upload</button>
</div>
</div>
</div>
{% endblock %}