-
Notifications
You must be signed in to change notification settings - Fork 0
/
reset-password.php
83 lines (79 loc) · 3.83 KB
/
reset-password.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
<!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 active" aria-current="page">Change Password</li>
</ol>
</nav>
<section class="panel">
<header class="panel-heading clearfix">
<h3><i class="la la-key"></i>Change Password</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-12">
<label for="input1" class="col-form-label">Old Password :</label>
<input type="text" class="form-control" id="input1">
</div>
<div class="form-group col-md-12">
<label for="input3" class="col-form-label">New Password :</label>
<input type="text" class="form-control" id="input3">
<small id="input3" class="form-text text-muted">Great passwords use upper and lower case characters, numbers, and symbols like !"@#$%. Passwords are case sensitive.</small>
</div>
<div class="form-group col-md-12">
<label for="input4" class="col-form-label">Re-Type New Password :</label>
<input type="text" class="form-control" id="input4">
<small id="input4" class="form-text text-muted">Confirm your new password by entering same password.</small>
</div>
</div>
<button type="submit" class="btn btn-primary"><i class="la la-key"></i> Reset Password</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>