-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (28 loc) · 992 Bytes
/
index.html
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
26
27
28
29
30
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ClassNexus</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>ClassNexus</h1>
</header>
<main>
<h2>Welcome to ClassNexus</h2>
<p class="description">A platform where students can access their timetable, syllabus, class notes, see their attendance. Teachers can also add class notes, give attendance and update the timetable for classes.</p>
<form onsubmit="return validateLogin()">
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<br><br>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
<br><br>
<input type="submit" value="Submit">
</form>
</main>
<script src="app.js"></script>
</body>
</html>