-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.html
62 lines (58 loc) · 1.41 KB
/
next.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
<?php
$page_title = "booking_page";
include('header.php');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head><title>Schedule</title></head>
<style>
#schedule-container
{
margin-left:500px;
margin-top:200px;
height:100px;
width: 300px;
padding-top:10px;
padding-left:10px;
}
#form{
padding-left:15px;
padding-bottom:15px;
}
#y{
padding-left:10px;
padding-bottom:5px;
padding-top:5px;
width:100px;
font-size:20px;
}
input[type=submit]
{
padding-bottom:5px;
}
</style>
<body>
<h2></h2>
<div id="schedule-container">
<!--<form id="form" method="post" action="schedule.php">
<select id="y" name="selType">
<option type="text" value="Wheat" style="width:30px;">Wheat</option>
<option value="Rice">Rice</option>
</select></p>
<input type="submit" / >
</form>-->
<form id="msform" method="POST">
<!-- fieldsets -->
<fieldset>
<h2 class="fs-title">CROP DETAILS</h2>
<input type="text" name="crop" placeholder="Crop name" />
<input type="text" name="quantity" placeholder="Quantity" />
<input type="date" name="dob" placeholder="Date_Booking" />
<input type="date" name="edob" placeholder="End_Booking" />
<input type="button" onClick="location.href='bookingnext.php'" name="next" class="next action-button" value="Next" />
</fieldset>
</form>
</div>
</body>
</html>