forked from babarindeos/eAgriservicomm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dashboard.php
110 lines (83 loc) · 3.5 KB
/
dashboard.php
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<?php
// require("authenticateLogin.php");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE-edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>AgricServicomm - Dashboard</title>
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css">
<link href="css/sitewide.css" rel="stylesheet" type="text/css" >
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/
➥3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/
➥respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
</head>
<body>
<!-- navbar //-->
<?php
require("sitenavbar.php");
?>
<!-- end of navbar //-->
<div class="mycontainer">
<!-- header //-->
<!-- end of header //-->
<div class="row">
<div class="col-xs-12 col-sm-6 col-md-3">
<form class="form">
<div class="form-group">
<textarea class="form-control" id="status" placeholder="Share your thoughts..."></textarea>
</div>
<div class="form-group" style="text-align:right;">
<input type="submit" value="Share" class="btn btn-success">
</div>
</form>
<ul class="list-group hidden-xs">
<h4>Stakeholders..</h4>
<li class="list-group-item">
<a href="#">Ministries of Agriculture </a>
<span class="badge badge-bg-green">14</span>
</li>
<li class="list-group-item">
<a href="#">
Universities of Agriculture
</a>
<span class="badge badge-bg-green">3</span>
</li>
<li class="list-group-item">
<a href="#">
Agricultural Research Institutes
</a>
<span class="badge badge-bg-green">9</span>
</li>
<li class="list-group-item">
<a href="#">
Agro-Experts
</a>
<span class="badge badge-bg-green">392</span>
</li>
</ul>
</div>
<div class="col-xs-12 col-sm-6 col-md-3 col-md-push-6">
<h2>Weather, Climate & Early Warning Information</h2>
</div>
<div class="col-xs-12 col-sm-6 col-md-6 col-md-pull-3">
<div id="sitefeed">
</div>
</div>
</div>
<?php
require("footer.php");
?>
</div><!-- end of container //-->
<script src="js/jquery-1.11.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/dashboard/feed.js"></script>
</body>
</html>