This repository has been archived on 2024-08-25. You can view files and clone it, but cannot push or open issues or pull requests.
CTAMail/templates/deleteacct.html

22 lines
863 B
HTML

<!DOCTYPE html>
<html lang="en"><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Delete account?</title>
<link rel="stylesheet" href="/static/css/main.css">
<script src="/static/js/main.js"></script>
</head>
<body>
<div class="headerbar">
<a class="a" href="/">CTAMail</a>
<a class="a" href="/signup">Sign up</a>
<a class="main a" href="/account">Account</a>
<button class="a right" onclick="toggleDarkMode()">Toggle Theme</button>
</div>
<div class="content">
<h1>Are you SURE you would like to delete your account?</h1>
<a class="button" href="/account">Whoops, wrong button, bring me back to the safe zone!</a>
<br>
<button style=" margin-top: 20px;" class="button" onclick="deleteacct()">Yes, I understand this is permanent and cannot be undone!</button>
</div>
</body></html>