-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinput.html
33 lines (31 loc) · 982 Bytes
/
input.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
<!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="calc.php" method="post">
<div class="bgimg"><h3 align="center">New Stock</h3>
</div>
<br>
<br>
<fieldset>
<input id="crop" placeholder="Crop" type="text" name="crop" tabindex="1" required autofocus>
</fieldset>
<fieldset>
<fieldset>
<input id="qty" placeholder="Quantity of Seeds (in Kg)" type="number" name="qty" tabindex="1" required autofocus>
</fieldset>
<fieldset>
<input id="area" placeholder="Area (in metre-squared)" type="number" name="area" tabindex="1" required autofocus>
<br><br>
<fieldset>
<button name="submit" type="submit" id="contact-submit" data-submit="...Sending">Submit</button>
</fieldset>
</form>
</div>
<p id="container"> hello </p>
</body>
</html>