-
Notifications
You must be signed in to change notification settings - Fork 181
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f6fcd3d
commit efeb978
Showing
4 changed files
with
47 additions
and
2 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<html> | ||
<head> | ||
<title>Change Password</title> | ||
<script src={{ url_for('static', filename='js/changePassword.js') }}></script> | ||
</head> | ||
<body> | ||
<form action={{ url_for('changePassword') }} method="POST"> | ||
<p>Old Password: <input type="password" name="oldpassword"></p> | ||
<p>New Password: <input type="password" name="newpassword"></p> | ||
<p>Confirm Password: <input type="password" name="cpassword"></p> | ||
<input type="submit" value="Save"> | ||
</form> | ||
</body> | ||
</html> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters