-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmailsentforsignup.php
More file actions
63 lines (50 loc) · 1.72 KB
/
mailsentforsignup.php
File metadata and controls
63 lines (50 loc) · 1.72 KB
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
<html>
<head>
<title>SafeKeep | Password Manager</title>
<link rel="icon" href="pass.jpg"/>
<meta name="author" content="Shivam Khanna">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-show-password/1.0.3/bootstrap-show-password.min.js"></script>
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<link rel="stylesheet" href="home_style.css">
<script>
function redirectback()
{
window.location = "index.php";
}
</script>
</head>
<body oncontextmenu="return false;">
<div id="main_head">
<div id="main_heading">
<div id="heading_content">
SafeKeep
</div>
</div>
</div>
<center>
<div id="main_form">
<div id="head_form">
<div id="head_formcontent">
SafeKeep
</div>
</div>
<hr>
<center>
<div id="formforsignin">
<h5 style="color:green">You have successfully registered as a SafeKeep customer.</h5>
Go to Sign In Page.
</br></br>
<button id="cancel" name="submit" title="Go Back" onclick="redirectback()">Go to Sign In Page</button>
</div>
</center>
</div>
</center>
</body>
</html>