-
Notifications
You must be signed in to change notification settings - Fork 0
/
Untitled Document.html
96 lines (62 loc) · 2.13 KB
/
Untitled Document.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
91
92
93
94
95
96
<!DOCTYPE html>
<html xmlns="https://www.w3.org/1999/xhtml">
<head >
<title>RECORDS</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="LOGIN1.css"> -!>
</head>
<body>
<div id="body">
<a href="HOME.html"><img src="title.png" alt="Logo" height="90px" width="510px" > </a>
<!- NAVIGATION BAR -!>
<ul>
<li><a href="HOME.html">Home</a></li>
<li><a href="ABOUT.html">About Us</a></li>
<li class="dropdown">
<a href="javascript:void(0)" class="dropbtn">Programmes & Schemes</a>
<div class="dropdown-content">
<a href="http://agricoop.nic.in/farmer-friendly-handbook" target="_blank">Farmer Friendly Handbook</a>
<a href="http://hortharyana.gov.in/en/beneficiary-list-farmers-groups" target="_blank">Benficiaries Report</a>
</div>
</li>
<li class="dropdown">
<a href="javascript:void(0)" class="dropbtn">Major Crops</a>
<div class="dropdown-content">
<a href="WHEAT.html">Wheat</a>
<a href="MAIZE.html">Maize</a>
<a href="RICE.html">Rice</a>
</div>
</li>
<li class="dropdown">
<a href="javascript:void(0)" class="dropbtn">Login</a>
<div class="dropdown-content">
<a href="LOGIN1.html">Farmer Login</a>
<a href="LOGIN2.html">Crop Scientist Login</a>
</div>
</li>
</ul>
</div>
<!- ----------------------------------------------FORM----------------------- -!>
<div id="id01" class="modal">
<form class="modal-content" action="ALLRECORDS.php" method="POST">
<div class="container">
<h1>RECORDS</h1>
<h3>Click the button to get the entire database</h3>
<button type="submit" class="signupbtn">Fetch DB</button>
</div>
</div>
</form>
<!- ---------------End of form---------------------------------------------------------------------------------------- -!>
<script>
// Get the modal
var modal = document.getElementById('id01');
// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
}
</script>
</div>
</body>
</html>