Files
member-console/site/components/logout.html

49 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Logout</title>
<style>
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f0f2f5;
}
.logout-container {
background: white;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
text-align: center;
}
.logout-button {
background-color: #f44336;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
}
.logout-button:hover {
background-color: #d32f2f;
}
</style>
</head>
<body>
<div class="logout-container">
<h1>Logout</h1>
<p>Are you sure you want to log out?</p>
<button class="logout-button" onclick="window.location.href='/logout'">
Logout
</button>
</div>
</body>
</html>