You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.0 KiB
34 lines
1.0 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Register</title>
|
|
<link rel="stylesheet" href="/static/morsel.css" />
|
|
<link rel="stylesheet" href="/static/theme.css" />
|
|
</head>
|
|
<body>
|
|
<div class="login_panel panel">
|
|
<h3>Welcome to Morsel!</h3>
|
|
<hr/>
|
|
{% if error %}
|
|
<div class="error">
|
|
{{ error }}
|
|
</div>
|
|
{% endif %}
|
|
<form action="/reg" method="POST">
|
|
<ul>
|
|
<li>Password must be at least 8 characters long.</li>
|
|
<li>Username must not contain any of the following characters: %&.+?;</li>
|
|
<li>Username may not contain offensive content.</li>
|
|
<li>Your username cannot be changed later.</li>
|
|
</ul>
|
|
<input type="text" name="username" placeholder="Username">
|
|
<input type="password" name="password" placeholder="Password">
|
|
<div class="buttons">
|
|
<a href="/login" class="abtn">Log In</a>
|
|
<input type="submit" value="Register New Account" />
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|