aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorhakangunturkun2020-03-02 11:24:02 -0600
committerhakangunturkun2020-03-02 11:24:02 -0600
commit6cc7b549d504c21ccd3d5af26a1b44f03fdce0b2 (patch)
treec097422667087b3fc0f10769a8e200236076ec63 /templates
parentafc0a2a9b4a05c3bd0e46e9156d023f8f1ed7474 (diff)
downloadgenecup-6cc7b549d504c21ccd3d5af26a1b44f03fdce0b2.tar.gz
password change
Diffstat (limited to 'templates')
-rw-r--r--templates/passwd_change.html29
1 files changed, 29 insertions, 0 deletions
diff --git a/templates/passwd_change.html b/templates/passwd_change.html
new file mode 100644
index 0000000..43cc675
--- /dev/null
+++ b/templates/passwd_change.html
@@ -0,0 +1,29 @@
+{% extends "about.html" %}
+{% block title %}Password Change{%endblock%}
+{% block content %}
+
+<table>
+ <tr>
+ <td width="60%">
+ {{ super() }}
+ </td>
+ <td width="40%">
+ <b>Welcome, {{name}}</b>
+ <hr>
+ <b>Type your new password below:</b>
+ <form class="p-2" action="#" method="POST">
+ <div class="form-group">
+ <input type="password" class="form-control" name="password" id="password" placeholder="Password" required>
+ <div class="dropdown-divider"></div>
+ <button type="submit" class="btn btn-primary btn-block">Change my password</button>
+ </div>
+ </form>
+ </td>
+ </tr>
+</table>
+
+
+
+
+
+{% endblock %} \ No newline at end of file