File size: 538 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
<!DOCTYPE html>
<html>
<head>
    <title>Take Attendance</title>
</head>
<body>

    <button id="openButton">Click the button to take attendance </button>

    <script>
        document.getElementById('openButton').addEventListener('click', function() {
            window.open('/atten', 'About Page', 'width=500,height=400');
        });
    </script>

    <style>
        body {
            font-family: Arial, Helvetica, sans-serif;
            background-color: black;
            color: white;
        }
    </style>
</body>
</html>