Fix logout
This commit is contained in:
parent
c9155d582b
commit
c42d2e3c16
@ -8,7 +8,6 @@
|
|||||||
<link rel="stylesheet" href="/styles/auth.css">
|
<link rel="stylesheet" href="/styles/auth.css">
|
||||||
<link rel="stylesheet" href="/styles/devices.css" />
|
<link rel="stylesheet" href="/styles/devices.css" />
|
||||||
<script defer type="module" src="/scripts/devices.js"></script>
|
<script defer type="module" src="/scripts/devices.js"></script>
|
||||||
<script defer type="module" src="/shared/utils.js"></script>
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
@ -16,9 +15,9 @@
|
|||||||
<div class="topnav">
|
<div class="topnav">
|
||||||
<a href="/home/index.html">Home</a>
|
<a href="/home/index.html">Home</a>
|
||||||
<div style="display: flex; justify-content: flex-end;">
|
<div style="display: flex; justify-content: flex-end;">
|
||||||
<a class="active" href="/devices/index.html">Devices</a>
|
<a class="active" href="/devices">Devices</a>
|
||||||
<a href="/profile/index.html">Profile</a>
|
<a href="/profile">Profile</a>
|
||||||
<span class="logoutContainer">
|
<span class="logout-container">
|
||||||
<img class="logout" src="/img/logout.png">
|
<img class="logout" src="/img/logout.png">
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
@ -15,9 +15,9 @@
|
|||||||
<div class="topnav">
|
<div class="topnav">
|
||||||
<a class="active" href="/home/index.html">Home</a>
|
<a class="active" href="/home/index.html">Home</a>
|
||||||
<div style="display: flex; justify-content: flex-end;">
|
<div style="display: flex; justify-content: flex-end;">
|
||||||
<a href="/devices/index.html">Devices</a>
|
<a href="/devices">Devices</a>
|
||||||
<a href="/profile/index.html">Profile</a>
|
<a href="/profile">Profile</a>
|
||||||
<span class="logoutContainer">
|
<span class="logout-container">
|
||||||
<img class="logout" src="/img/logout.png">
|
<img class="logout" src="/img/logout.png">
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
@ -4,8 +4,6 @@
|
|||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<title>Temperature Alarm</title>
|
<title>Temperature Alarm</title>
|
||||||
<link rel="stylesheet" href="/styles/frontpage.css">
|
<link rel="stylesheet" href="/styles/frontpage.css">
|
||||||
<link rel="stylesheet" href="/styles/auth.css">
|
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<main>
|
<main>
|
||||||
|
@ -7,16 +7,15 @@
|
|||||||
<link rel="stylesheet" href="/styles/auth.css">
|
<link rel="stylesheet" href="/styles/auth.css">
|
||||||
<link rel="stylesheet" href="/styles/profile.css">
|
<link rel="stylesheet" href="/styles/profile.css">
|
||||||
<script defer type="module" src="/scripts/profile.js"></script>
|
<script defer type="module" src="/scripts/profile.js"></script>
|
||||||
<script defer type="module" src="/shared/utils.js"></script>
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="container">
|
<div id="container">
|
||||||
<div class="topnav">
|
<div class="topnav">
|
||||||
<a href="/home/index.html">Home</a>
|
<a href="/home/index.html">Home</a>
|
||||||
<div style="display: flex; justify-content: flex-end;">
|
<div style="display: flex; justify-content: flex-end;">
|
||||||
<a href="/devices/index.html">Devices</a>
|
<a href="/devices">Devices</a>
|
||||||
<a class="active" href="/profile/index.html">Profile</a>
|
<a class="active" href="/profile">Profile</a>
|
||||||
<span class="logoutContainer">
|
<span class="logout-container">
|
||||||
<img class="logout" src="/img/logout.png">
|
<img class="logout" src="/img/logout.png">
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
import { getDevices, deleteDevice, update, add } from "./services/devices.service.js";
|
import { getDevices, deleteDevice, update, add } from "./services/devices.service.js";
|
||||||
import { devices } from "../mockdata/devices.mockdata.js";
|
import { devices } from "../mockdata/devices.mockdata.js";
|
||||||
|
import { logout } from "../shared/utils.js";
|
||||||
|
|
||||||
getDevices().then(res => {
|
getDevices().then(res => {
|
||||||
buildTable(res)
|
buildTable(res)
|
||||||
@ -88,3 +89,6 @@ document.getElementById("editbtn").onclick = () => {
|
|||||||
window.location.reload();
|
window.location.reload();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
document.querySelector(".logout-container").addEventListener("click", logout);
|
||||||
|
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
import { logout } from "../shared/utils.js";
|
||||||
import { getLogsOnDeviceId } from "./services/devices.service.js";
|
import { getLogsOnDeviceId } from "./services/devices.service.js";
|
||||||
|
|
||||||
async function buildChart(data) {
|
async function buildChart(data) {
|
||||||
@ -81,3 +82,6 @@ getLogsOnDeviceId(1)
|
|||||||
document.getElementById("container").style.display = "none";
|
document.getElementById("container").style.display = "none";
|
||||||
});
|
});
|
||||||
|
|
||||||
|
document.querySelector(".logout-container").addEventListener("click", logout);
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
import { profileData } from "../mockdata/profile.mockdata.js";
|
import { profileData } from "../mockdata/profile.mockdata.js";
|
||||||
|
import { logout } from "../shared/utils.js";
|
||||||
import { get } from "./services/users.service.js";
|
import { get } from "./services/users.service.js";
|
||||||
import { update } from "./services/users.service.js";
|
import { update } from "./services/users.service.js";
|
||||||
import { updatePassword } from "./services/users.service.js";
|
import { updatePassword } from "./services/users.service.js";
|
||||||
@ -98,3 +99,6 @@ document.getElementById("PasswordForm").addEventListener("submit", function(even
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
document.querySelector(".logout-container").addEventListener("click", logout);
|
||||||
|
|
||||||
|
@ -34,9 +34,9 @@ export async function request(method, path, body = null) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
document.querySelectorAll(".logoutContainer").forEach(closeBtn => {
|
export function logout() {
|
||||||
closeBtn.onclick = () => {
|
localStorage.removeItem("user");
|
||||||
localStorage.clear();
|
document.cookie = "auth-token=";
|
||||||
window.location.href = "/index.html";
|
window.location.href = "/";
|
||||||
};
|
}
|
||||||
});
|
|
||||||
|
@ -6,9 +6,9 @@ body {
|
|||||||
.topnav {
|
.topnav {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
background-color: #333;
|
background-color: #333;
|
||||||
}
|
}
|
||||||
|
|
||||||
.topnav a {
|
.topnav a {
|
||||||
height: 20px;
|
height: 20px;
|
||||||
float: left;
|
float: left;
|
||||||
color: #f2f2f2;
|
color: #f2f2f2;
|
||||||
@ -16,9 +16,9 @@ body {
|
|||||||
padding: 14px 16px;
|
padding: 14px 16px;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
font-size: 17px;
|
font-size: 17px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.topnav a:hover, .topnav span:hover {
|
.topnav a:hover, .topnav span:hover {
|
||||||
background-color: #ddd;
|
background-color: #ddd;
|
||||||
color: black;
|
color: black;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
@ -66,15 +66,15 @@ button:hover {
|
|||||||
margin-top: 0.5rem;
|
margin-top: 0.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.logoutContainer{
|
.logout-container {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
width: 50px;
|
width: 50px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.logout{
|
.logout {
|
||||||
width: 20px;
|
width: 20px;
|
||||||
height: 24px;
|
height: 24px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: sans-serif;
|
font-family: sans-serif;
|
||||||
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
main {
|
main {
|
||||||
|
Loading…
Reference in New Issue
Block a user