-
Notifications
You must be signed in to change notification settings - Fork 1
/
MyfarmPage
92 lines (73 loc) · 2.87 KB
/
MyfarmPage
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
<!doctype html>
<html lang="en">
<head>
<title>Probacco</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="wrapper d-flex align-items-stretch">
<nav id="sidebar" class="active">
<div class="custom-menu">
<button type="button" id="sidebarCollapse" class="btn btn-primary">
<i class="fa fa-bars"></i>
<span class="sr-only">Toggle Menu</span>
</button>
</div>
<div class="p-4">
<h1><a href="index.html" class="logo">Probacco</a></h1>
<ul class="list-unstyled components mb-5">
<li class="active">
<a href="#">
<span class="fa fa-home mr-3"></span>
<span onclick = "MyHome()";> Home</span>
</a>
</li>
<li>
<a href="#"><span class="fa fa-user mr-3"></span> My profile </a>
</li>
<li>
<a href = "#">
<span class="fa fa-briefcase mr-3"></span><span> My Farm</span>
</li>
<li>
<span class="fa fa-sticky-note mr-3"></span> Farm Analytics</a>
</li>
<li>
<a href="#"><span class="fa fa-paper-plane mr-3"></span> Contact </a>
</li>
</ul>
<div class="mb-5">
<h3 class="h6 mb-3">Renew your Subscription</h3>
<form action="#" class="subscribe-form">
<div class="form-group d-flex">
<div class="icon"><span class="icon-paper-plane"></span></div>
<input type="text" class="form-control" placeholder="Enter Email Address">
</div>
</form>
</div>
<div class="footer">
<p><!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. -->
Copyright ©<script>document.write(new Date().getFullYear());</script> All rights reserved to Probacco Inc.
<!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. --></p>
</div>
</div>
</nav>
<div id="content" class="p-4 p-md-5 pt-5"><!-- Page Content -->
<iframe src = "file:///C:/Users/anish/OneDrive/Desktop/ProbaccoApp/Map2.html"
width = "100%" height = "100%" ></iframe> </div>
</div>
<script>
function MyHome(); {
window.close();
}
</script>
<script src="js/jquery.min.js"></script>
<script src="js/popper.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>