summaryrefslogtreecommitdiffstats
path: root/nfsw/templates
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2019-10-21 22:01:55 -0400
committerrsiddharth <s@ricketyspace.net>2019-10-21 22:01:55 -0400
commitbe1f931f13f37e2d05c79f61cbf1a254c002aa20 (patch)
treebd4c04be42fa592a190c7d26bff9f2c70409babc /nfsw/templates
parent02b2a19d94a7826e4c15392f89935149f4a2f38c (diff)
nfsw/templates/register.html: Prettify.
Only Desktop view ready. Need to work on the Mobile view.
Diffstat (limited to 'nfsw/templates')
-rw-r--r--nfsw/templates/register.html53
1 files changed, 34 insertions, 19 deletions
diff --git a/nfsw/templates/register.html b/nfsw/templates/register.html
index 1327512..3676591 100644
--- a/nfsw/templates/register.html
+++ b/nfsw/templates/register.html
@@ -4,27 +4,42 @@
{% block title %}Register{% endblock %}
{% block content %}
-<div class="msg-block">
- <div class="content">
- {% for m in get_flashed_messages() %}
- <p>{{ m }}</p>
- {% endfor %}
- </div>
-</div>
-<form method="post">
- <div class="form-group">
- <label for="username">Username</label>
- <input name="username" class="username" required>
- </div>
+<div class="auth-grid">
+ <div class="auth-grid-item">
+ <header>
+ <h1>NFSW - Register</h1>
+ </header>
- <div class="form-group">
- <label for="password">Password</label>
- <input type="password" name="password" class="password" required>
- </div>
+ <div class="msg-block">
+ <div class="content">
+ {% for m in get_flashed_messages() %}
+ <p>{{ m }}</p>
+ {% endfor %}
+ </div>
+ </div>
+
+ <form method="post">
+ <div class="form-group">
+ <label for="username">Username</label>
+ <input type="text" id="username"
+ name="username" class="username" required>
+ </div>
- <div class="button-group">
- <input type="submit" value="Register">
+ <div class="form-group">
+ <label for="password">Password</label>
+ <input type="password" id="password"
+ name="password" class="password" required>
+ </div>
+
+ <div class="button-group">
+ <input type="submit" value="Register">
+ </div>
+ </form>
</div>
-</form>
+</div>
+{% endblock %}
+
+{% block css %}
+<link rel="stylesheet" href="{{ url_for('static', filename='auth.css') }}">
{% endblock %}