-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogisticManagement.html
More file actions
62 lines (57 loc) · 2.28 KB
/
logisticManagement.html
File metadata and controls
62 lines (57 loc) · 2.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<h1> LOGISTIC MANAGEMENT</h1>
<form class="logistic" autocomplete="off">
<input type="hidden" id="hide">
<div>
<label class="a2">
<spam class="b1">ID:</spam><input type="number" class="c1" id="ID" name="ID" placeholder="enter ID" onblur=" validation('ID','error','ID:')">
</label>
<br>
<span id = "error"></span>
<br>
<label class="a2">
<spam class="b1">ITEM NAME:</spam><input type="text" id="ITEM" class="c1" onblur="validation('ITEM','iError','ITEM NAME:')" name="Item name" placeholder="enter item name">
</label>
<br>
<span id = "iError"></span>
<br>
<label class="a2">
<spam class="b1">DATE:</spam><input type="date" id="date" class="c1" onblur=" validation('date','dError','DATE:')" name="date" id="date">
</label>
<br>
<span id = "dError"></span>
<br>
<label class="a2" for="category" id="a3">CATEGORY:</label>
<select name="category" id="category" onblur=" validation('category','sError','CATEGORY:')">
<option value="" disabled selected >select</option>
<option value="electronis">electronics</option>
<option value="paper">paper</option>
<option value="cheque">cheque</option>
</select>
<br>
<span id = "sError"></span>
<br>
<button class="button" onclick="addData()" type="button" id="update">submit</button>
<button class="button" onclick="resetform()" type="button" >reset</button>
</div>
</form>
<table class="storage" id="list">
<thead>
<tr>
<th>id</th>
<th>name</th>
<th>date</th>
<th>category</th>
<th>action</th>
</tr>
</thead>
</table>
<script src="jquery1.js"></script>
</body>
</html>