diff options
Diffstat (limited to 'templates/register2.html')
-rw-r--r-- | templates/register2.html | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/templates/register2.html b/templates/register2.html new file mode 100644 index 0000000..4de3760 --- /dev/null +++ b/templates/register2.html @@ -0,0 +1,48 @@ +<!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.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. |