File size: 645 Bytes
13393a8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!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>