Spaces:
Sleeping
Sleeping
<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> | |