hectamail-website/account/templates/changepass.html

25 lines
973 B
HTML
Raw Normal View History

2023-11-20 17:55:25 +00:00
<!DOCTYPE html>
<html><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>HectaMail</title>
<link rel="stylesheet" href="/static/css/main.css" media="">
</head>
<body>
<div class="headerbar">
<a href="https://mail.hectabit.org/">HectaMail</a>
<a href="https://mail.hectabit.org/register">Sign up</a>
<a class="main" href="https://mail.hectabit.org/account">Account</a>
</div>
<div class="content">
<h1>Change your password</h1>
<br>
2023-11-20 18:05:54 +00:00
<form method="POST" action="/account/changeapi">
<input type="hidden" name="email" style="display: inline;" value="{{ user_email }}">
<input type="hidden" name="passwordhash" value="{{ password_hash }}">
2023-11-20 17:55:25 +00:00
<input name="password">
<input type="submit" value="Confirm">
2023-11-20 18:05:54 +00:00
<button onclick="location.href = '/account';">Cancel</button>
2023-11-20 17:55:25 +00:00
</div>
<style type="text/css"></style>
</body></html>