diff options
author | hakangunturkun | 2020-03-02 11:24:02 -0600 |
---|---|---|
committer | hakangunturkun | 2020-03-02 11:24:02 -0600 |
commit | 6cc7b549d504c21ccd3d5af26a1b44f03fdce0b2 (patch) | |
tree | c097422667087b3fc0f10769a8e200236076ec63 /templates | |
parent | afc0a2a9b4a05c3bd0e46e9156d023f8f1ed7474 (diff) | |
download | genecup-6cc7b549d504c21ccd3d5af26a1b44f03fdce0b2.tar.gz |
password change
Diffstat (limited to 'templates')
-rw-r--r-- | templates/passwd_change.html | 29 |
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 |