-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaddCourse.html
More file actions
101 lines (92 loc) · 4.33 KB
/
addCourse.html
File metadata and controls
101 lines (92 loc) · 4.33 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" type="text/css"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/css/toastr.css">
<link rel="stylesheet" href="styleNEW.css">
<link rel="stylesheet" href="styleFormNew.css">
<title>Add</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-custom">
<a class="navbar-brand" href="#">
<div class="logo-area">
<img src="monkas1.png" width="30px">
</div>
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="index.html">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="student.html">Student</a>
</li>
<li class="nav-item">
<a class="nav-link" href="trainer.html">Trainer</a>
</li>
<li class="nav-item">
<a class="nav-link" href="course.html">Course</a>
</li>
<li class="nav-item">
<a class="nav-link" href="assignment.html">Assignment</a>
</li>
</ul>
</div>
</nav>
<div class="container-fluid">
<div class="row">
<div class="col-sm-12">
<h1 class="mt-5">Add Course</h1>
<hr>
<div class="main-content">
<div class="error" id="emptyInputs"></div>
<form action="/successfull.html" id="myFormCourse" novalidate>
<div class="error" id="titleValidation"></div>
<label for="title">Title:</label>
<input type="text" name="title" id="title" placeholder="CB01" />
<div class="error" id="streamValidation"></div>
<label for="stream">Stream:</label>
<input type="text" name="stream" id="stream" placeholder="text" />
<div class="error" id="typeValidation"></div>
<div class="error" id="typePeriodValidation"></div>
<label for="type">Type:</label>
<select name="type" id="type">
<option value="type0">---Select---</option>
<option value="type1">Full Time</option>
<option value="type2">Part Time</option>
</select>
<br>
<div class="error" id="mixDateValidation"></div>
<label for="startDate">Start Date:</label>
<input type="date" name="startDate" id="startDate" />
<br>
<label for="endDate">End Date:</label>
<input type="date" name="endDate" id="endDate" />
<button id="submit" type="submit">Submit</button>
</form>
</div>
</div>
</div>
</div>
<footer class="footer">
© Copyright by Kappa 2020
</footer>
<!-- /Jquery -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<!-- Bootstrap javascript -->
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<!-- Toastr.js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/js/toastr.min.js"></script>
<script src="scriptCourse.js"></script>
</body>
</html>