shoplist2/templates/useracc.html
2020-02-26 00:19:58 +11:00

19 lines
712 B
HTML

{% include "header.html" %}
<div style="width: 90%; display: flex; justify-content: center;">
<a href="/">
<button onclick="window.location='admin'" class="btn btn-secondary"><i style="padding-top: 3px;"
class="material-icons">
home
</i></button></a>
<div >
<h1> Welcome {{session["username"].title()}} you can change your password below</h1>
<div >
<form action="/post" method="POST"><input style="display: inline;"
class="form-control" type="text" name="newpass" id="addbox"><button
class="btn btn-secondary" type="submit" name="updatepass" value="{{session['id']}}"> Change
Password </button></form>
</div>
</div>
</div>
{% include "footer.html" %}