Browse code

Created repository.

DoubleBastionAdmin authored on 26/01/2022 20:32:42
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,31 @@
1
+<?php
2
+/**
3
+ *  Copyright (C) 2021  Double Bastion LLC
4
+ *
5
+ *  This file is part of Roundpin, which is licensed under the
6
+ *  GNU Affero General Public License Version 3.0. The license terms
7
+ *  are detailed in the "LICENSE.txt" file located in the root directory.
8
+ */
9
+
10
+echo "<html>
11
+<head>
12
+<title>Registration success</title>
13
+<style>
14
+  body { text-align: center; padding: 150px; }
15
+  h1 { font-size: 50px; }
16
+  body { font: 18px Helvetica, sans-serif; background-color: #e2e0e0; text-align: center; }
17
+  .content { display: block; text-align: center; width: 700px; margin: 0 auto; }
18
+</style>
19
+</head>
20
+<body>
21
+<div class='content'>
22
+    <h3>You have been successfully registered to Roundpin !</h3>
23
+    <div>
24
+        <p>You can access the <a href='" . $_SERVER['REQUEST_SCHEME'] . "://" . $_SERVER['HTTP_HOST'] . "/roundpin-login.php'>login page</a> and use your username and
25
+           password to log in.</p>
26
+    </div>
27
+</div>
28
+</body>
29
+</html>";
30
+
31
+?>