18 lines
402 B
HTML
18 lines
402 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title></title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Register</h1>
|
||
|
<form method="POST" action="/register">
|
||
|
<input type="text" name="username">
|
||
|
<input type="password" name="password">
|
||
|
<input type="text" name="email">
|
||
|
<input type="text" name="secret">
|
||
|
<input type="submit" value="Submit">
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|