FeDirect/static/crossroad.html

35 lines
947 B
HTML
Raw Normal View History

2025-01-12 04:47:05 +01:00
<!DOCTYPE html>
<html lang="en">
2025-01-12 06:39:38 +01:00
2025-01-12 04:47:05 +01:00
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FeDirect</title>
2025-01-12 06:39:38 +01:00
<link rel="stylesheet" href="/static/crossroad.css">
2025-01-12 04:47:05 +01:00
</head>
2025-01-12 06:39:38 +01:00
2025-01-12 04:47:05 +01:00
<body>
<script type="module" src="/static/crossroad.mjs"></script>
2025-01-12 06:39:38 +01:00
<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>
2025-01-12 04:47:05 +01:00
</body>
2025-01-12 06:39:38 +01:00
2025-01-12 04:47:05 +01:00
</html>