75 lines
1.4 KiB
Plaintext
75 lines
1.4 KiB
Plaintext
<!-- views/home.ejs -->
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Home</title>
|
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
|
|
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
|
|
<style>
|
|
.chart-container {
|
|
width: 400px;
|
|
height: 250px;
|
|
margin: 20px;
|
|
border: 1px solid #ddd;
|
|
display: inline-block;
|
|
}
|
|
body {
|
|
margin: 0;
|
|
font-family: 'Arial', sans-serif;
|
|
}
|
|
|
|
#navbar {
|
|
background-color: #333;
|
|
overflow: hidden;
|
|
text-align: center;
|
|
}
|
|
|
|
#navbar h1 {
|
|
color: white;
|
|
padding: 14px 16px;
|
|
margin: 0;
|
|
font-size: 24px;
|
|
}
|
|
|
|
#navbar a {
|
|
display: inline-block;
|
|
color: white;
|
|
text-align: center;
|
|
padding: 14px 16px;
|
|
text-decoration: none;
|
|
font-size: 18px;
|
|
}
|
|
|
|
#navbar a:hover {
|
|
background-color: #555;
|
|
}
|
|
|
|
#content {
|
|
padding: 16px;
|
|
text-align: center;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
<div id="navbar">
|
|
<h1>Eco Saver</h1>
|
|
<a href="/inusers">In-House Users</a>
|
|
<a href="#">Users</a>
|
|
<a href="#">Data Analysis</a>
|
|
<a href="/logout">Logout</a>
|
|
</div>
|
|
|
|
<div id="content">
|
|
<h2>Welcome to the Home Page, <%= username %>!</h2>
|
|
|
|
</body>
|
|
|
|
</html> |