-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnewstock.html
45 lines (42 loc) · 1.54 KB
/
newstock.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/main.css">
<meta name="viewport" content="width=device-width, user-scalable=no" />
</head>
<body>
<div class="container">
<form id="contact" action="newstock.php" method="post">
<div class="bgimg"><h3 align="center">New Stock</h3>
</div>
<br>
<br>
<fieldset>
<input id="sh" placeholder="Storage House" type="text" name="sh" tabindex="1" required autofocus>
</fieldset>
<fieldset>
<input id="crop" placeholder="Crop" type="text" name="crop" tabindex="1" required autofocus>
</fieldset>
<fieldset>
<input id="fname" placeholder="Farmer's Name" type="text" name="fname" tabindex="1" required autofocus>
</fieldset>
<fieldset>
<fieldset>
<input id="qty" placeholder="Quantity (in Tons)" type="number" name="qty" tabindex="1" required autofocus>
</fieldset>
<fieldset>
<!-- <input id="doh" type="date" name="doh" tabindex="1" required autofocus> -->
<input placeholder="Date of Harvesting" class="textbox-n" type="text" name="hd" onfocus="(this.type='date')" id="hd">
</fieldset>
<fieldset>
<!-- <input id="doe" type="date" name="doe" tabindex="1" required autofocus> -->
<input placeholder="Date of Expiry" class="textbox-n" type="text" name="ed" onfocus="(this.type='date')" id="ed">
</fieldset>
<fieldset>
<button name="submit" type="submit" id="contact-submit" data-submit="...Sending">Submit</button>
</fieldset>
</form>
</div>
<p id="container"> hello </p>
</body>
</html>