-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnewUser.php
More file actions
58 lines (44 loc) · 1.15 KB
/
Copy pathnewUser.php
File metadata and controls
58 lines (44 loc) · 1.15 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
<!DOCTYPE html>
<head>
<?php include "public/header.php";
session_start();
include "public/settings.php";
include "../sql/sqlFunctions.php";
include "sql_used_variables.php";
include "sql/sqlSettings.php";
?>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" >
<LINK REL="SHORTCUT ICON" HREF="/favicon.ico">
<title>EthosEnergy Icon</title>
<script src="js/Base64.js"></script>
<script src="js/userDataStore.js"></script>
<style type="text/css">
<style>
body {
color:#000000;
background-color:#FFFFFF;
margin:0;
}
#container {
margin-left:auto;
margin-right:auto;
text-align:center;
background-color:#999999;
}
a img {
border:5px;
}
</style>
</head>
<html>
<body>
<br>
<p id="bounce"><strong>Thankyou for registering with EthosEnergy iCon <br> Once you account is verified and
setup you will recieve and email to: <?php echo $_SESSION["emails"] ?> <strong></p>
<a onclick="clearLocalStorage()" href="javascript:void(0);"><br>Logout</a>
<?php
echo "<br> s";
$testNewUser = newUserSQLInsert($_SESSION);
?>
</body>
</html>