45 lines
1.1 KiB
HTML
45 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Register</title>
|
|
<style>
|
|
body {
|
|
background-color: black;
|
|
color: white;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
{% for message in get_flashed_messages() %}
|
|
{{ message }}
|
|
{% endfor %}
|
|
<pre>
|
|
┬ ┌┬┐ ┬─┐ ┬─┐ ┬─┐ ┌┐┐ ┬─┐
|
|
│ │ │─│ │─ │┬┘ │ │─┤
|
|
┘─┘ └┴┘ │─┘ ┴─┘ │└┘ ┘ ┘ │
|
|
|
|
┌─┐ ┬─┐ ┐─┐ ┬─┐
|
|
│ │─┤ └─┐ │─┤
|
|
└─┘ ┘ │ ──┘ ┘ │
|
|
|
|
<form method="POST" action="/register">
|
|
{{ form.hidden_tag() }}
|
|
<fieldset>
|
|
<legend>Sign Up</legend>
|
|
{{ form.username.label }}
|
|
{{ form.username }}
|
|
{{ form.email.label }}
|
|
{{ form.email }}
|
|
{{ form.password.label }}
|
|
{{ form.password }}
|
|
{{ form.confirm_password.label }}
|
|
{{ form.confirm_password }}
|
|
</fieldset>
|
|
{{ form.submit }}
|
|
</form>
|
|
|
|
If you already have an account please login to the IRC using SASL.
|