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,30 @@
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>New Email Message</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>Your email address has been verified.</h3>
23
+    <div>
24
+        <p>You have successfully changed your Roundpin user email!</p>
25
+    </div>
26
+ </div>
27
+ </body>
28
+ </html>";
29
+
30
+?>