Made the background transparent in the account dialog

This commit is contained in:
Tracker-Friendly 2024-05-16 19:17:47 +01:00
parent fb0a298ae3
commit aa026d3e19
1 changed files with 5 additions and 3 deletions

View File

@ -1,10 +1,11 @@
<!DOCTYPE html>
<html lang="en"><head>
<html lang="en">
<head>
<link rel="stylesheet" href="/static/css/style.css" media="">
<script src="/static/js/dashboard.js"></script>
<title>Dashboard</title>
</head>
<body>
<body style="background-color: transparent;">
<script>
async function deleteacct() {
await fetch(remote + "/api/deleteaccount", {
@ -54,4 +55,5 @@
<button onclick="parent.window.location.href = '/logout';">Logout</button><br style="">
<button onclick="deleteacct()" style="margin-top: 5px;">Delete Account</button>
</div>
</body></html>
</body>
</html>