diff options
Diffstat (limited to 'templates/register1.html')
-rw-r--r-- | templates/register1.html | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/templates/register1.html b/templates/register1.html new file mode 100644 index 0000000..1de1f38 --- /dev/null +++ b/templates/register1.html @@ -0,0 +1,50 @@ +<!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"> + {{ optionform.hidden_tag() }} + {{ optionform.option }} + {{ optionform.submit }} +</form> + +<form method="POST" action="/register1"> + {{ registerform.hidden_tag() }} + <fieldset> + <legend>Sign Up</legend> + {{ registerform.username.label }} + {{ registerform.username }} + {{ registerform.email.label }} + {{ registerform.email }} + {{ registerform.password.label }} + {{ registerform.password }} + {{ registerform.confirm_password.label }} + {{ registerform.confirm_password }} + </fieldset> + {{ registerform.submit }} +</form> + +If you already have an account please login to the IRC using SASL. |