-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup_confirm.php
135 lines (100 loc) · 4.84 KB
/
signup_confirm.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
<?php
include_once('./includes/functions.php');
if (!isset($_SESSION['user_email'])) {
include('index.php');
exit();
}
?>
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html lang="en">
<head>
<meta charset="UTF-8">
<title>BLACK & WHITE</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<!-- Bootstrap Core CSS -->
<link href="assets/css/bootstrap.min.css" rel="stylesheet">
<!-- MetisMenu CSS -->
<link href="assets/css/plugins/metisMenu/metisMenu.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="assets/css/sb-admin-2.css" rel="stylesheet">
<link href="assets/css/bootstrap-datetimepicker.min.css" rel="stylesheet" media="screen">
<!-- Custom Fonts -->
<link href="assets/font-awesome-4.1.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
</head>
<body>
<!--<div id="wrapper">-->
<div class="navbar navbar-inverse navbar-static-top">
<div class="navbar-inner">
<div class="container">
</div>
</div>
</div>
<!--<div class="container">-->
<div class="container-fluid">
<div class="col-md-5 col-md-offset-3">
<div class="">
</div>
<div class="">
<p><h2>Congratulations</h2></p>
</div>
<div class="">
You have successfully created a new account on B&F. For security reasons you cannot access your new account yet.
An email has been sent to <code><?php echo $_SESSION['user_email']; ?></code> containing a link that you can use to access your new
created account.
</div>
</div>
<!--login form-->
<!-- <form class="form-horizontal" method="POST" action="#">
sign in logo
<div class="">
<img src="#"/>
</div>
email text field
<div class="">
<input class="form-control" id="email_field" style="max-width:375px; height: 35px" class=""type="email" placeholder="Email address" required />
</div> <br>
password textfield
<div class="">
<input class="form-control" id="password_field" type="password" style="max-width:375px; height: 35px" placeholder="Password" required />
</div> <br>
Remember me checkbox
<div class="">
<label class="checkbox">
<input type="checkbox"> Remember me
</label>
</div> <br>
login button
<div class="">
<input type="submit" value="Sign In" style="max-width:375px; height: 35px" class="form-control btn btn-large btn-primary"/>
</div> <br>
<div class="">
<span>First time here?</span><a href="signup.php"> Sign Up</a>
</div>
<div class="">
<a href="#">Forgot your password?</a>
</div> <br>
</form>-->
</div>
<!--</div>-->
<script src="assets/js/jquery.js"></script>
<!-- <script src="assets/jquery/jquery-1.8.3.min.js" charset="UTF-8"></script> -->
<script type="text/javascript" src="assets/jquery/jquery.classyqr.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="assets/js/bootstrap.min.js"></script>
<script>
$(function () {
$("#")
.popover({ title: 'Example', content: "kofi.ama@gmail.com" })
.blur(function () {
$(this).popover('hide');
});
});
</script>
</body>
</html>