Files
MEVN-Attendance-Tracker/attendancetracker/public/index.html
jslightham 93956f9ab5 working
2020-04-09 00:08:06 -04:00

33 lines
881 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Attendance Tracker</title>
</head>
<style>
#sorry {
text-align: center;
margin-top: 24%;
font-family: Roboto, Open Sans, sans-serif;
color: black;
}
#oops {
font-size: 40px;
color: #134074;
}
</style>
<body>
<noscript>
<div id="sorry">
<strong id="oops">Uh oh, JavaScript seems to have kicked the bucket</strong>
<br> <br>
<strong>We're sorry, but Attendance Tracker doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</div>
</noscript>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html>