mkManishKumar's picture
Upload 15 files
13393a8 verified
raw
history blame
No virus
645 Bytes
<!DOCTYPE html>
<html>
<head>
<title>Take Attendance</title>
</head>
<body>
<h2>Click the Button to take Attendance</h2>
<img src="" alt="">
<form action="/take_attendance" method="post">
<input type="submit" value="Take Attendance" id="btn">
</form>
</body>
<style>
body {
font-family: Arial, Helvetica, sans-serif;
background-color: black;
color: white;
height: 500px;
}
input{
background-color: #00b2ff;
font-size: 1.2em;
border: none;
border-radius: 0.5em;
padding: 0.3em;
margin-left: 130px;
}
</style>
</html>