-
Notifications
You must be signed in to change notification settings - Fork 0
/
AddLecture.html
66 lines (63 loc) · 2.47 KB
/
AddLecture.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="AddLecStyle.css">
<script type="text/javascript" src="AddLecValidate.js"></script>
</head>
<body>
<header>
<div class="logo">
<img src="images/logo.png" alt="Logo">
<h1>STUDENT COURSE TRACKER</h1>
</div>
<nav>
<ul>
<li><a href="dashboardadmin.html">Dashboard</a></li>
<li><a href="#">Students</a>
<ul>
<li><a href="addstudent.html">Add Students</a></li>
<li><a href="viewStudent.php">Manage Students</a></li>
</ul>
</li>
<li><a href="#">Lecturers</a>
<ul>
<li><a href="AddLecture.html">Add Lectures</a></li>
<li><a href="ViewLecture.php">Manage Lectures</a></li>
</ul>
</li>
<li><a href="login.html">Log Out</a></li>
</ul>
</nav>
</header>
<div class = "content">
<div class = "fill">
<div class = heading>
<h1> Add Lecture </h1>
</div>
<form class = "lec-form" id = "lecform" name="lecform" onsubmit="return validate()" method="post" action="AddLecture.php">
<label for="lecname">Lecture Name</label>
<input type="text" id="lecname" name="lecname"></br></br>
<label for="contactno">Contact Number</label>
<input type="tel" id="contactno" name="contactno"></br></br>
<label for="email">Email</label>
<input type="email" id="email" name="email"></br></br>
<label for="address">Address</label>
<input type="text" id="address" name="address"></br></br>
<label for="password">Password</label>
<input type="password" id="password" name="password"></br></br>
<button type = "submit" name="submit">Add Lecture</button>
</form>
</div>
</div>
<footer class="footer">
<pre>
<img src="Images/logo.png" alt="Institute logo">
<a href="mailto:programes@nibm.lk">Contact Us</a>
or call +94 75 468 3291 | © 2024 DUTH College
</pre>
</footer>
</body>
</html>