34 lines
805 B
HTML
34 lines
805 B
HTML
<!doctype html>
|
|
|
|
<html>
|
|
<body>
|
|
<h1>REGISTER</h1>
|
|
|
|
<p>
|
|
<a href="/">Game</a>
|
|
</p>
|
|
|
|
<form id="register">
|
|
<label for="email">Email</label>
|
|
<input required type="email" name="user" id="email" />
|
|
(required)<br />
|
|
<label for="password">Password</label>
|
|
<input
|
|
required
|
|
type="password"
|
|
name="password"
|
|
id="password"
|
|
pattern=".{8,}"
|
|
/>
|
|
(required, min 8 chars)<br />
|
|
<button type="submit" id="login-button">Register</button>
|
|
</form>
|
|
|
|
<p>
|
|
<a href="/login">Login?</a>
|
|
</p>
|
|
|
|
<script type="module" src="/src/register.ts"></script>
|
|
</body>
|
|
</html>
|