25 lines
973 B
HTML
25 lines
973 B
HTML
<!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>
|
|
<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 }}">
|
|
<input name="password">
|
|
<input type="submit" value="Confirm">
|
|
<button onclick="location.href = '/account';">Cancel</button>
|
|
</div>
|
|
<style type="text/css"></style>
|
|
</body></html>
|