17 lines
354 B
HTML
17 lines
354 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>Register</title>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Register</h1>
|
|
<form method="POST">
|
|
<input type="text" name="username" placeholder="Username" required>
|
|
<input type="password" name="password" placeholder="Password" required>
|
|
<button type="submit">Register</button>
|
|
</form>
|
|
</body>
|
|
|
|
</html> |