19 lines
712 B
HTML
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" %} |