fileHost/templates/change_password.html

20 lines
646 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Change password</title>
</head>
<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>