Files
Konquesto/register.html
2026-01-25 22:39:46 +01:00

21 lines
570 B
HTML

<!doctype html>
<html>
<body>
<h1>REGISTER</h1>
<a href="/">Game</a>
<div id="login">
<label for="email">Email</label>
<input type="email" name="user" id="email" /><br />
<label for="password">Password</label>
<input type="password" name="password" id="password" /><br />
<button id="login-button">Register</button>
</div>
<div>
<a href="/login">Login?</a>
</div>
<script type="module" src="/src/login.ts"></script>
</body>
</html>