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