Files
Grinch-AP/WebHostLib/templates/check.html
Chris Wilson ccdc8cefe4 Many small adjustments
- Adjust header width for scrollbar presence
- Added new header assets for grass and dirt
- Adjusted styles for hosted and tracker
- Expand header to implement templating system
- Much more I have forgotten
2020-12-03 01:55:48 -05:00

29 lines
1.0 KiB
HTML

{% extends 'pageWrapper.html' %}
{% 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>
{% endblock %}
{% block body %}
{% include 'header/oceanHeader.html' %}
<div id="check-wrapper">
<div id="check" class="grass-island">
<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">
<input id="file-input" type="file" name="file">
</form>
<button id="check-button">Upload</button>
</div>
</div>
</div>
{% include 'islandFooter.html' %}
{% endblock %}