forked from ademcan/canSnippet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththankyoupwdmail.php
43 lines (33 loc) · 923 Bytes
/
thankyoupwdmail.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
<?php
/*
@author: Ademcan ([email protected])
@name: thankyou.php
@description: successffull password renewal
*/
require_once("./config.php");
$lng = language();
switch ($lng) {
case "en":
require("./en.php");
break;
case "fr":
require("./fr.php");
break;
}
?>
<html>
<head>
<link rel="icon" type="image/jpg" href="images/favicon.png">
<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['successfullnewpwdmail']); ?><br /><br />
<button type="button" class="homeButton" onclick='document.location.href="admin/login.php";'><?php echo($messages['connect']); ?></button>
</div>
</center>
</body>
</html>