hectamail-website/account/templates/dashboard.html

25 lines
891 B
HTML
Raw Normal View History

2023-11-19 21:54:36 +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>
2023-11-19 23:47:22 +00:00
<a class="main" href="https://mail.hectabit.org/account">Account</a>
2023-11-19 21:54:36 +00:00
</div>
<div class="content">
<h1>Account management</h1>
2023-11-20 17:32:17 +00:00
<p1>{{ user_email }}</p1>
<br>
2023-11-19 23:47:22 +00:00
<button onclick="location.href = '/account/changepass';">Change Password</button>
<button onclick="location.href = '/account/deleteacct';">Delete Account</button>
2023-11-20 17:32:17 +00:00
<br>
2023-11-20 17:55:25 +00:00
<br>
2023-11-20 17:32:17 +00:00
<button onclick="location.href = '/account/logout';">Logout</button>
2023-11-19 21:54:36 +00:00
</div>
<style type="text/css"></style>
</body></html>