1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-04-23 23:57:46 +00:00
kawari/templates/admin.html
Joshua Goins c1ad0c023c Add configurable boot patch location, fix verifying boot components
And more, this is mostly laying the groundwork for serving patch files.
2024-06-29 14:44:40 -04:00

18 lines
No EOL
584 B
HTML

<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>