Made the background transparent in the account dialog
This commit is contained in:
parent
fb0a298ae3
commit
aa026d3e19
|
@ -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>
|
||||
|
|
Reference in New Issue