15 lines
450 B
HTML
15 lines
450 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Register</title>
|
|
</head>
|
|
<body>
|
|
<form action="/register" method="POST">
|
|
<input type="text" name="username" placeholder="Username"><br>
|
|
<input type="password" name="password" placeholder="Password"><br>
|
|
<input type="submit" value="Register">
|
|
</form>
|
|
</body>
|
|
</html>
|