-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcs.html
84 lines (81 loc) · 3.28 KB
/
cs.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Freight Management System - maheshwari trading company, dhule</title>
<link rel="stylesheet" href="css/style.css" />
<script>
function loadDate() {
let today = new Date().toLocaleDateString();
}
</script>
</head>
<body onload="loadDate();">
<div class="container">
<span id="title">
<h1>Maheshwari Trading Company</h1>
<h2>Freight Management System</h2>
<span id="now">Today : <script>document.write(new Date().toLocaleDateString()); </script></span>
<span id="time">Time : <script>document.write(new Date().toLocaleTimeString()); </script></span>
</span>
<form action="">
<div class="row">
<label for="date">Date :</label>
<input type="date" name="date" id="date" value="" />
</div>
<div class="row">
<label for="lrno">LRNo :</label>
<input type="text" name="lrno" id="lrno" />
<label for="lrdate">LR Date :</label>
<input type="date" name="lrdate" id="lrdate" />
</div>
<div class="row">
<label for="transportname">Transport Name :</label>
<input type="text" name="transportname" id="transportname" />
<label for="amount">Amount :</label>
<input type="number" name="amount" id="amount" step="0.01" class="currency"/>
</div>
<div class="row">
<label for="supplier_details">Supplier Details :</label>
<input type="text" name="supplier_details" id="supplier_details" />
</div>
<div class="row">
<label for="supp_inv_no">Supplier Invoice Details :</label>
<input type="text" name="supp_inv_no" id="supp_inv_no" />
<label for="inv_date">Invoice Date :</label>
<input type="date" name="inv_date" id="inv_date" />
</div>
<div class="row">
<label for="material_dtls">Material Details:</label>
<input type="text" name="material_dtls" id="material_dtls" />
<label for="remarks">Remarks :</label>
<input type="text" name="remarks" id="remarks" />
</div>
<div class="row">
<label for="stlno">STL No:</label>
<input type="text" name="stlno" id="stlno" />
<label for="stldate">STL Date :</label>
<input type="date" name="stldate" id="stldate" />
</div>
<div class="row">
<label for="stlpaidamt">STL Paid Amount :</label>
<input type="number" name="stlpaidamt" id="stlpaidamt" step="0.01" class="currency" />
</div>
<div class="row">
<label for="stlclaimremark">STL Claim Remarks :</label>
<input type="text" name="stlclaimremark" id="stlclaimremark" />
<label for="stlclaimamt">STL Claim Amount:</label>
<input type="number" name="stlclaimamt" id="stlclaimamt" step="0.01" class="currency"/>
</div>
<div class="row">
<label for="tallyaccname">Tally Account Name :</label>
<input type="text" name="tallyaccname" />
</div>
</form>
</div>
<div class="bottom-container">
<p>Save</p>
</div>
</body>
</html>