2024-01-20 19:53:33 +01:00
|
|
|
<h2>Register</h2>
|
|
|
|
<form action="register.php" method="post">
|
|
|
|
<input type="text" name="username" id="username-field" pattern=".{3,32}" placeholder="Username" required>
|
|
|
|
<input type="email" name="email" id="email-field" placeholder="E-Mail" required>
|
|
|
|
<input type="password" name="password" id="password-field" pattern=".{8,128}" placeholder="Password" required>
|
|
|
|
<input type="submit" value="Register">
|
2024-01-23 11:07:20 +01:00
|
|
|
<a href="/login">Already have an account?</a>
|
2024-01-20 19:53:33 +01:00
|
|
|
</form>
|