-
Notifications
You must be signed in to change notification settings - Fork 0
/
new-organization.php
147 lines (143 loc) · 6.57 KB
/
new-organization.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang=""> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang=""> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang=""> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<link rel="stylesheet" href="assets/css/style.css">
<script src="assets/js/vendor/modernizr-2.8.3-respond-1.4.2.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Ubuntu:300,300i,400,400i,500,500i,700,700i" rel="stylesheet">
</head>
<body>
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<?php include 'header.php';?>
<div id="main-content" class="padding">
<nav aria-label="breadcrumb" role="navigation">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="index.php">Dashboard</a></li>
<li class="breadcrumb-item"><a href="organization.php">Organization</a></li>
<li class="breadcrumb-item active" aria-current="page">New Organization</li>
</ol>
</nav>
<section class="panel">
<header class="panel-heading clearfix">
<h3><i class="la la-building"></i>New Organization</h3>
</header>
<div class="panel-body">
<!-- Add New Organization-->
<div id="newOrganization" class="margin-top">
<form>
<div class="form-row">
<div class="form-group col-md-6">
<label for="input1" class="col-form-label">Organization Name :</label>
<input type="text" class="form-control" id="input1">
</div>
<div class="form-group col-md-6">
<label for="input2" class="col-form-label">Type of Organization :</label>
<select id="input2" class="form-control">
<option selected>Choose...</option>
<option>Government</option>
<option>Local NGO</option>
<option>INGO</option>
<option>Local Business</option>
<option>Multi National</option>
</select>
</div>
<div class="form-group col-md-6">
<label for="input3" class="col-form-label">Contact Number :</label>
<input type="text" class="form-control" id="input3">
</div>
<div class="form-group col-md-6">
<label for="input4" class="col-form-label">Fax :</label>
<input type="text" class="form-control" id="input4">
</div>
<div class="form-group col-md-6">
<label for="input5" class="col-form-label">Email :</label>
<input type="text" class="form-control" id="input5">
</div>
<div class="form-group col-md-6">
<label for="input6" class="col-form-label">Website :</label>
<input type="text" class="form-control" id="input6">
</div>
<div class="form-group col-md-4">
<label for="input7" class="col-form-label">Country :</label>
<select id="input7" class="form-control">
<option selected>Choose...</option>
<option>Nepal</option>
<option>Australia</option>
<option>United States</option>
<option>Japan</option>
</select>
</div>
<div class="form-group col-md-8">
<label for="input8" class="col-form-label">Address :</label>
<input type="text" class="form-control" id="input8">
</div>
<div class="form-group col-md-6">
<label for="input9" class="col-form-label">Public Description :</label>
<textarea class="form-control" id="input9" rows="5"></textarea>
</div>
<div class="form-group col-md-6">
<label for="input10" class="col-form-label">Additional Description :</label>
<textarea class="form-control" id="input10" rows="5"></textarea>
</div>
<div class="form-group col-md-6">
<label for="input11" class="col-form-label">Latitude :</label>
<input type="text" class="form-control" id="input11">
</div>
<div class="form-group col-md-6">
<label for="input12" class="col-form-label">Longitude :</label>
<input type="text" class="form-control" id="input12">
</div>
<!--<div class="form-group col-md-12">
<label class="custom-file">
<input type="file" id="file2" class="custom-file-input">
<span class="custom-file-control"></span>
</label>
</div>-->
<div class="form-group col-md-12">
<label class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" checked>
<span class="custom-control-indicator"></span>
<span class="custom-control-description">Is Active</span>
</label>
</div>
<div class="form-group col-md-12">
<div id="osMap" class="full-map margin-top"></div>
</div>
</div>
<button type="submit" class="btn btn-primary"><i class="la la-plus"></i> Add Organization</button>
</form>
</div>
</div>
</section>
</div>
<?php include 'footer.php';?>
<script src="assets/js/vendor/leaflet.js"></script>
<script>
var map = L.map('osMap', {
center: [51.505, -0.09],
zoom: 13
});
</script>
<script src="assets/js/plugins.js"></script>
<script src="assets/js/main.js"></script>
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
<script>
(function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]=
function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date;
e=o.createElement(i);r=o.getElementsByTagName(i)[0];
e.src='//www.google-analytics.com/analytics.js';
r.parentNode.insertBefore(e,r)}(window,document,'script','ga'));
ga('create','UA-XXXXX-X','auto');ga('send','pageview');
</script>
</body>
</html>