mkManishKumar's picture
Upload 15 files
13393a8 verified
raw
history blame
No virus
538 Bytes
<!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>