Browse code

Created repository.

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