hectamail-website/account/templates/dashboard.html

25 lines
891 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>Account management</h1>
<p1>{{ user_email }}</p1>
<br>
<button onclick="location.href = '/account/changepass';">Change Password</button>
<button onclick="location.href = '/account/deleteacct';">Delete Account</button>
<br>
<br>
<button onclick="location.href = '/account/logout';">Logout</button>
</div>
<style type="text/css"></style>
</body></html>