-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy paththankyou.php
executable file
·44 lines (35 loc) · 927 Bytes
/
thankyou.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
<?php
/*
@author: Ademcan ([email protected])
@name: thankyou.php
@description: Account creation successfull
*/
require_once("./config.php");
$lng = language();
switch ($lng) {
case "en":
require("./en.php");
break;
case "fr":
require("./fr.php");
break;
}
?>
<html>
<head>
<link rel="stylesheet" href="css/flat.css" type="text/css" media="screen" />
</head>
<body>
<center>
<img src="images/canSnippetLogo_CE_200x200_new.png" style="width:200px;padding-top:50px;"/><br />
<div style="">
<br /><br />
<?php echo($messages['accountcreationreceived']); ?>
<br />
<?php echo($messages['accountcreationreceived2']); ?>
<br /><br />
<button type="button" class="homeButton" onclick='document.location.href="/";'><?php echo($messages['home']); ?></button>
</div>
</center>
</body>
</html>