Files
masha_site/static/attendance/submit/index.html
2025-09-23 16:51:19 +03:00

59 lines
1.2 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Submit Attendance</title>
<style>
html,
body {
height: 100%;
margin: 0;
}
body {
display: flex;
min-height: 100vh;
background: #0b1220;
}
.container {
flex: 1;
display: flex;
flex-direction: column;
}
.wrapper {
flex: 1;
display: flex;
}
iframe {
border: 0;
width: 100%;
height: 100vh;
}
.header {
padding: 12px 16px;
color: #e6edf3;
font-family:
system-ui,
-apple-system,
Segoe UI,
Roboto,
Ubuntu,
Cantarell,
Noto Sans,
sans-serif;
}
</style>
</head>
<body>
<div class="container">
<div class="header">Submit Attendance</div>
<div class="wrapper">
<iframe
src="https://docs.google.com/forms/d/e/1FAIpQLSf3qmcbINKS78SzDoI1aAYSNlSLufVD0PboHxGjMjoxXuhTjw/viewform?embedded=true"
allowfullscreen
></iframe>
</div>
</div>
</body>
</html>