15 lines
443 B
HTML
15 lines
443 B
HTML
|
<h1>Register</h1>
|
||
|
<form method="post">
|
||
|
<label for="username">Username</label>
|
||
|
<input type="text" name="username" id="username" />
|
||
|
|
||
|
<label for="password">Password</label>
|
||
|
<input type="password" name="password" id="password" />
|
||
|
|
||
|
<label for="repeatPassword">Repeat password</label>
|
||
|
<input type="password" name="repeatPassword" id="repeatPassword" />
|
||
|
|
||
|
<button type="submit">Register</button>
|
||
|
</form>
|
||
|
<p><a href="/register">Register</a></p>
|