-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupdateAssignment.html
More file actions
98 lines (86 loc) · 4.18 KB
/
updateAssignment.html
File metadata and controls
98 lines (86 loc) · 4.18 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
<!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>Update</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">Update Assignment</h1>
<hr>
<div class="main-content">
<div class="error" id="fullInputs"></div>
<form action="/successfull.html" id="myFormAssignment" novalidate>
<div class="error" id="titleValidation"></div>
<label for="title">Title:</label>
<input type="text" name="title" id="title" value="Project 1" />
<div class="error" id="descriptionValidation"></div>
<label for="description">Description:</label>
<input type="text" name="description" id="description" value="Calculator" />
<div class="error" id="subDateTimeValidation"></div>
<label for="subDateTime">Sub Date Time:</label>
<input type="date" name="subDateTime" id="subDateTime" value="2021-12-12" />
<div class="error" id="oralMarkValidation"></div>
<label for="oralMark">Oral Mark:</label>
<input type="text" name="oralMark" id="oralMark" value="70" />
<div class="error" id="totalMarkValidation"></div>
<label for="totalMark">Total Mark:</label>
<input type="text" name="totalMark" id="totalMark" value="60" />
<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="scriptAssignmentUpdate.js"></script>
</body>
</html>