summaryrefslogtreecommitdiffstats
path: root/templates/register.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/register.html')
-rw-r--r--templates/register.html44
1 files changed, 44 insertions, 0 deletions
diff --git a/templates/register.html b/templates/register.html
new file mode 100644
index 0000000..9c535e3
--- /dev/null
+++ b/templates/register.html
@@ -0,0 +1,44 @@
+<!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.