SAS2 / templates /index.html
harshdhane's picture
Upload 8 files
c6b2168 verified
Raw
History Blame Contribute Delete
2.12 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Face Attendance</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
background-color: #f5f5f5;
color: #333;
line-height: 1.6;
}
.container {
width: 80%;
max-width: 800px;
margin: 50px auto;
padding: 30px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
text-align: center;
}
h2 {
color: #2c3e50;
margin-bottom: 30px;
font-size: 32px;
}
.nav-links {
display: flex;
flex-direction: column;
gap: 15px;
margin-top: 25px;
}
.btn {
display: inline-block;
padding: 12px 24px;
background-color: #3498db;
color: white;
text-decoration: none;
border-radius: 5px;
font-weight: 500;
transition: background-color 0.3s;
border: none;
font-size: 16px;
cursor: pointer;
}
.btn:hover {
background-color: #2980b9;
}
.logo {
font-size: 36px;
color: #3498db;
margin-bottom: 15px;
}
</style>
</head>
<body>
<div class="container">
<div class="logo">
<i class="fas fa-user-check"></i>
</div>
<h2>Welcome to Face Attendance System</h2>
<div class="nav-links">
<a href="/register" class="btn">Register Face</a>
<a href="/mark" class="btn">Mark Attendance</a>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/js/all.min.js"></script>
</body>
</html>