1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-05-06 20:57:45 +00:00
kawari/resources/templates/admin.html
Joshua Goins f2c009b9a7 Add Bootstrap styling to most web pages
I haven't changed any of the content yet, only included the Boostrap CSS
and unified their base template.
2025-05-03 11:56:27 -04:00

24 lines
697 B
HTML

{% extends "layout.html" %}
{% block title %}Kawari Admin Panel{% endblock %}
{% block body %}
<p>Gate open:{{ worlds_open }}</p>
<p>Gate open:{{ login_open }}</p>
<p>Boot patch location:{{ boot_patch_location }}</p>
<form action='apply' method='post'>
<label>
Worlds Open:
<input type='checkbox' id='worlds_open' name='worlds_open' checked/>
</label>
<label>
Login Open:
<input type='checkbox' id='login_open' name='login_open' checked/>
</label>
<label>
Boot Patch Location:
<input type='text' id='boot_patch_location' name='boot_patch_location'/>
</label>
<button type='submit'>Apply</button>
</form>
{% endblock %}