77 lines
2.0 KiB
HTML
77 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Dashboard</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: #f9f9f9;
|
|
color: #333;
|
|
}
|
|
header {
|
|
background-color: #f0f2f5;
|
|
padding: 1rem;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
|
}
|
|
.user-info {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
}
|
|
.user-info span {
|
|
font-weight: 600;
|
|
}
|
|
.btn {
|
|
padding: 8px 16px;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
font-weight: 500;
|
|
transition: background-color 0.2s ease;
|
|
}
|
|
.btn-account {
|
|
background-color: #4285f4;
|
|
color: white;
|
|
}
|
|
.btn-account:hover {
|
|
background-color: #3367d6;
|
|
}
|
|
.btn-logout {
|
|
background-color: #f44336;
|
|
color: white;
|
|
}
|
|
.btn-logout:hover {
|
|
background-color: #d32f2f;
|
|
}
|
|
.content {
|
|
padding: 2rem;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
}
|
|
</style>
|
|
<script src="https://unpkg.com/htmx.org"></script>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<div class="user-info">
|
|
<span>Welcome, User!</span>
|
|
<a href="http://localhost:8080/realms/master/account" class="btn btn-account">Account</a>
|
|
<a href="/logout" class="btn btn-logout">Logout</a>
|
|
</div>
|
|
</header>
|
|
<div class="content">
|
|
<!-- Rest of your protected content -->
|
|
<h1>Dashboard</h1>
|
|
<p>This is your protected dashboard content.</p>
|
|
</div>
|
|
</body>
|
|
</html>
|