-
Notifications
You must be signed in to change notification settings - Fork 0
/
passwordUpdated.php
61 lines (53 loc) · 1.49 KB
/
passwordUpdated.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
<?php
session_start();
if (isset($_GET['submit'])) {
$_SESSION['currentId'] = "";
echo "<script>window.close();</script>";
}
?>
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>LeagueLights</title>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/shop-homepage.css" rel="stylesheet">
<link href="css/leaguelights.css" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top">
<div class="container">
<p class="navbar-brand">LeagueLights</p>
</div>
</nav>
<div class="container py-5">
<div class="row my-4">
<div class="col-lg-3"></div>
<form class="col-lg-6">
<div class="row">
<div class="col-lg-3"></div>
<h4 class="text-center col-lg-6">Please sign in with new password</h4>
<div class="col-lg-3"></div>
</div>
<div class="row">
<div class="col-lg-5"></div>
<button class="col-lg-2" type="submit" name="submit" value="submit">Ok</button>
<div class="col-lg-5"></div>
</div>
</form>
<div class="col-lg-3"></div>
</div>
</div>
<script>
window.onunload = refreshParent;
function refreshParent() {
window.opener.location.reload();
}
</script>
</body>
</html>