Archipelago/WebHostLib/templates/check.html

29 lines
1.0 KiB
HTML
Raw Normal View History

{% extends 'pageWrapper.html' %}
2020-07-27 02:05:42 +00:00
{% block head %}
{{ super() }}
<title>Mystery Check Result</title>
<link rel="stylesheet" type="text/css" href="{{ static_autoversion("styles/check.css") }}" />
<script type="application/ecmascript" src="{{ static_autoversion("assets/check.js") }}"></script>
2020-07-27 02:05:42 +00:00
{% endblock %}
{% block body %}
{% include 'header/oceanHeader.html' %}
<div id="check-wrapper">
<div id="check" class="grass-island">
2020-07-27 02:05:42 +00:00
<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="check-form-wrapper">
<form id="check-form" method="post" enctype="multipart/form-data">
2020-07-27 02:05:42 +00:00
<input id="file-input" type="file" name="file">
</form>
<button id="check-button">Upload</button>
2020-07-27 02:05:42 +00:00
</div>
</div>
</div>
{% include 'islandFooter.html' %}
2020-07-27 02:05:42 +00:00
{% endblock %}