FeDirect/static/crossroad.html
2025-01-12 06:39:38 +01:00

35 lines
No EOL
947 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FeDirect</title>
<link rel="stylesheet" href="/static/crossroad.css">
</head>
<body>
<script type="module" src="/static/crossroad.mjs"></script>
<div class="flex-vcenter">
<dialog open>
<h1>FeDirect</h1>
<p>By Nekomata</p>
<form>
<input id="radio" type="radio" />
<label for="radio">
Instances and stuff go here!
</label>
</form>
<br />
<button onclick="document.getElementById('addInstance').showModal()">Add an instance</button>
</dialog>
</div>
<dialog id="addInstance">
<h1>Add an instance</h1>
<form method="dialog">
<button>OK</button>
</form>
</dialog>
</body>
</html>