-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
90 lines (79 loc) · 3.64 KB
/
index.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
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sample Database Querys</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/scrollbar.css">
<script src="js/main.js"></script>
</head>
<body>
<div class="container">
<span style="text-align: center;">
<h1>Maheshwari Trading Company</h1>
<h2>Freight Management System</h2>
<div> </div>
<div>
<span id="now" class="card">Today : <script>
document.write(new Date().toLocaleDateString());
</script></span>
<span id="time" class="card">Time : <script>
document.write(new Date().toLocaleTimeString());
</script></span>
</div>
</span>
<form action="">
<div class="row card">
<label for="date">Date :</label>
<input type="date" name="date" id="date" value="" />
</div>
<div class="row card lr">
<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" />
<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 card supplier">
<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" />
<label for="supplier_details">Supplier Details :</label>
<input type="text" name="supplier_details" id="supplier_details" />
<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 card stl">
<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" />
<label for="stlpaidamt">STL Paid Amount :</label>
<input type="number" name="stlpaidamt" id="stlpaidamt" step="0.01" class="currency" />
<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 card tally">
<label for="tallyaccname">Tally Account Name :</label>
<input type="text" name="tallyaccname" />
</div>
</form>
</div>
<div class="bottom-container">
<div>
<input type="submit" name="Submit" />
<input type="reset" name="Reset" />
</div>
</div>
</body>
</html>