36 lines
811 B
Plaintext
36 lines
811 B
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="style.css">
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap">
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
|
<h1>ECOSAVER MANAGEMENT</h1>
|
|
</header>
|
|
|
|
<nav>
|
|
<a href="/inusers">In-House Users</a>
|
|
<a href="#">Users</a>
|
|
<a href="/sensors">Sensors</a>
|
|
<a href="/locations">Locations</a>
|
|
<a href="/logout">Logout</a>
|
|
</nav>
|
|
|
|
<main>
|
|
<h2>Welcome to the Home Page, <%= username %>!</h2>
|
|
</main>
|
|
<footer>
|
|
Any Issue faced, Please contact the administrator at 11111111 or ecosaverAdmin@gmail.com
|
|
</footer>
|
|
</body>
|
|
|
|
</html> |