-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathforget.php
107 lines (91 loc) · 2.29 KB
/
forget.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
<!doctype html>
<html>
<link rel="stylesheet" type="text/css" href="buyer/assets/bootstrap.css" />
<script type="text/javascript" src="buyer/assets/jquery.js"></script>
<script type="text/javascript" src="buyer/assets/bootstrap.js"></script>
<link rel="shortcut icon" href="img/favicon.ico" />
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<title>OLUX SHOP</title>
<style>
@import url(https://fonts.googleapis.com/css?family=Roboto:400);
html, body {
background: url(img/bg.png);
}
.container {
padding: 25px;
position: fixed;
}
.form-login {
background-color: #EDEDED;
padding-top: 10px;
padding-bottom: 20px;
padding-left: 20px;
padding-right: 20px;
border-radius: 15px;
border-color:#d2d2d2;
border-width: 5px;
box-shadow:0 1px 0 #cfcfcf;
}
h4 {
border:0 solid #fff;
border-bottom-width:1px;
padding-bottom:10px;
text-align: center;
}
h6 {
border:0 solid #fff;
border-bottom-width:1px;
padding-bottom:5px;
text-align: center;
}
.form-control {
border-radius: 10px;
}
.wrapper {
text-align: center;
}
</style>
</head>
<body>
<script type="text/javascript">
$(window).on('load', function() {
logindiv(3,'Forget - Olux SHOP','forget.html',1);
});</script>
<!--Pulling Awesome Font -->
<div class="container">
<div class="row">
<div class="col-md-offset-5 col-md-3">
<div class="form-login" id="logindiv">
</div>
</div>
</div>
</div>
</body>
</html>
<script type="text/javascript">
function logindiv(n,y,z,x){
$("#logindiv").html('<h4><img src="img/loadTab.gif"></h4>').show();
$.ajax({
type: 'GET',
url: 'loginpage'+ n +'.html?x='+Math.random(),
success: function(data)
{
$("#logindiv").html(data).show();
var obj = { Title: y, Url: z };
if (x != 1) {
history.pushState(obj, obj.Title, obj.Url);
}
else{
history.replaceState(obj, obj.Title, obj.Url);
}
document.title = y;
}});
}
$(window).on("popstate", function(e) {
if (event.state) {
location.replace(document.location);
}
});
</script>