-
Notifications
You must be signed in to change notification settings - Fork 2
/
add_liscence.html
executable file
·51 lines (44 loc) · 1.56 KB
/
add_liscence.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Add Vendor</title>
</head>
<body>
<div id="add_vendor">
<center><h3> Add a License</h3>
<form action="http://localhost:9090/add_vendor" method="post">
<table border="3" align="center" >
<tr><th>Vendor Name</th>
<th>Product Name</th>
<th>Product Liscence Number</th>
<th>Status</th>
<th>Start Date</th>
<th>End Date </th>
<th>Comments</th>
</tr>
<tr>
<td><input type="text" id="vname" name="vname" placeholder="Enter Vendor Name" /></td>
<td><input type="text" id="pname" name="pname" placeholder="Enter Product Name" /></td>
<td><input type="hidden" id="pliscenceno" name="pliscenceno" /></td>
<td><select id="selected_opt" name="selected_opt">
<option selected>To be initiated</option>
<option >Triggered with Vendor</option>
<option >PO initiated with Purchase</option>
<option >PO available</option>
<option>PO Shared with vendor</option>
<option>Renewal document signed</option>
<option>Renewed</option>
</select>
</td>
<td><input type="date" id="sdate" name="sdate" placeholder="yyyy-mm-dd" /></td>
<td><input type="date" id="edate" name="edate" placeholder="yyyy-mm-dd" /></td>
<td><textarea id="comments" name="comments" placeholder="Comment"></textarea></td>
</tr>
<tr><td colspan = 6 align="center"><input type="submit" value="Save Details" /></td></tr>
</table>
</form>
</center>
</div>
</body>
</html>