summaryrefslogtreecommitdiff
path: root/templates/register.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/register.html')
-rw-r--r--templates/register.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/templates/register.html b/templates/register.html
new file mode 100644
index 0000000..e7d105e
--- /dev/null
+++ b/templates/register.html
@@ -0,0 +1,25 @@
+{% extends "layout.html" %}
+
+{% block title %}
+ Register
+{% endblock %}
+
+{% block main %}
+ <form action="/register" method="post">
+ <div class="form-group">
+ <input autocomplete="off" autocomplete="off" autofocus class="form-control" name="username" placeholder="Username" type="text">
+ </div>
+ <br>
+ <div class="form-group">
+ <input class="form-control" autocomplete="off" name="password" placeholder="Password" type="password">
+ <p class="footnote">* Password must be between 6-25 characters long and contain at least one number and one letter</p>
+ </div>
+ <div class="form-group">
+ <input class="form-control" autocomplete="off" name="confirmation" placeholder="Confirm Password" type="password">
+ <p class="footnote">* Your input must match the password above</p>
+ </div>
+ <button class="btn btn-success" type="submit">Register</button>
+ </form>
+ <br>
+ <p>You already have an account? <a href="/login" class="link-success">Sign in!</a></p>
+{% endblock %}