<
<!DOCTYPE
html>
<html
lang="ru">
<head>
<meta
charset="UTF-8">
<title>Регистрация</title>
</head>
<body>
<h2>Форма
регистрации</h2>
<form
action="register.php" method="post">
<label
for="username">Имя
пользователя:</label><br>
<input
type="text" name="username" required><br>
<label
for="email">Email:</label><br>
<input
type="email" name="email" required><br>
<label
for="password">Пароль:</label><br>
<input
type="password" name="password" required><br>
<button
type="submit">Зарегистрироваться</button>
</form>
<p>Уже
есть аккаунт? <a href="login.html">Войдите</a></p>
</body>
</html>