Files
notes/code/misc/python/scripts/MITM/templates/change_password.html
2024-12-20 21:50:09 +00:00

15 lines
364 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Change Password</title>
</head>
<body>
<h1>Change Password</h1>
<form method="POST">
<label for="new_password">New Password:</label>
<input type="password" name="new_password" id="new_password" required>
<br>
<button type="submit">Change Password</button>
</form>
</body>
</html>