| 1 | 1 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,46 @@ |
| 1 |
+<?php |
|
| 2 |
+ |
|
| 3 |
+/** |
|
| 4 |
+ * @copyright 2024 Double Bastion LLC <www.doublebastion.com> |
|
| 5 |
+ * |
|
| 6 |
+ * @author Double Bastion LLC |
|
| 7 |
+ * |
|
| 8 |
+ * @license GNU AGPL version 3 or any later version |
|
| 9 |
+ * |
|
| 10 |
+ * This program is free software; you can redistribute it and/or |
|
| 11 |
+ * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE |
|
| 12 |
+ * License as published by the Free Software Foundation; either |
|
| 13 |
+ * version 3 of the License, or any later version. |
|
| 14 |
+ * |
|
| 15 |
+ * This program is distributed in the hope that it will be useful, |
|
| 16 |
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 17 |
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 18 |
+ * GNU AFFERO GENERAL PUBLIC LICENSE for more details. |
|
| 19 |
+ * |
|
| 20 |
+ * You should have received a copy of the GNU Affero General Public |
|
| 21 |
+ * License along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
| 22 |
+ * |
|
| 23 |
+ */ |
|
| 24 |
+ |
|
| 25 |
+echo "<html> |
|
| 26 |
+<head> |
|
| 27 |
+<title>Registration success</title> |
|
| 28 |
+<style> |
|
| 29 |
+ body { text-align: center; padding: 150px; }
|
|
| 30 |
+ h1 { font-size: 50px; }
|
|
| 31 |
+ body { font: 18px Helvetica, sans-serif; background-color: #e2e0e0; text-align: center; }
|
|
| 32 |
+ .content { display: block; text-align: center; width: 700px; margin: 0 auto; }
|
|
| 33 |
+</style> |
|
| 34 |
+</head> |
|
| 35 |
+<body> |
|
| 36 |
+<div class='content'> |
|
| 37 |
+ <h3>You have been successfully registered to RED SCARF Suite Panel !</h3> |
|
| 38 |
+ <div> |
|
| 39 |
+ <p>You can access the <a href='" . $_SERVER['REQUEST_SCHEME'] . "://" . $_SERVER['HTTP_HOST'] . "/panel-login.php'>login page</a> and use your username and |
|
| 40 |
+ password to log in.</p> |
|
| 41 |
+ </div> |
|
| 42 |
+</div> |
|
| 43 |
+</body> |
|
| 44 |
+</html>"; |
|
| 45 |
+ |
|
| 46 |
+?> |