fileHost/templates/change_password.html

20 lines
646 B
HTML
Raw Normal View History

2018-02-19 23:01:28 -05:00
<!DOCTYPE html>
<html>
2018-03-03 11:20:39 -05:00
<head>
<title>Change password</title>
</head>
2018-02-19 23:01:28 -05:00
<body>
<form method="post" action="{{ url_for('change_password') }}">
<p>Change your password sir?
<p>Current password:<br/>
<input type="password" name="current_password" id="current_password" maxlength="1024" required/>
<p>New password:<br/>
<input type="password" name="new_password" id="new_password" maxlength="1024" required/>
<p>Verify password:<br/>
<input type="password" name="new_password_verify" id="new_password_verify" maxlength="1024" required/>
<p><input type="submit" value="Submit" name="submit"/>
</form>
</body>
</html>