-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdatabase.sql
More file actions
518 lines (417 loc) · 163 KB
/
database.sql
File metadata and controls
518 lines (417 loc) · 163 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
-- phpMyAdmin SQL Dump
-- version 5.2.0
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: Jan 02, 2025 at 05:00 PM
-- Server version: 11.7.1-MariaDB-log
-- PHP Version: 8.1.10
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `database`
--
-- --------------------------------------------------------
--
-- Table structure for table `html_content`
--
CREATE TABLE `html_content` (
`id` int(11) NOT NULL,
`name` varchar(255) NOT NULL,
`content` longtext NOT NULL,
`is_active` tinyint(1) DEFAULT 1,
`created_at` timestamp NOT NULL DEFAULT current_timestamp(),
`updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
--
-- Dumping data for table `html_content`
--
INSERT INTO `html_content` (`id`, `name`, `content`, `is_active`, `created_at`, `updated_at`) VALUES
(1, 'Home ', '<html>\r\n <head>\r\n <title>Bixa - Free Web Hosting</title>\r\n <script src=\"https://cdn.tailwindcss.com\"></script>\r\n <link rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css\">\r\n <style>\r\n @import url(\'https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap\');\r\n body {\r\n font-family: \'Poppins\', sans-serif;\r\n }\r\n .gradient-bg {\r\n background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);\r\n }\r\n .feature-icon {\r\n width: 64px;\r\n height: 64px;\r\n margin-bottom: 1rem;\r\n }\r\n html {\r\n scroll-behavior: smooth;\r\n }\r\n .rotate-180 {\r\n transform: rotate(180deg);\r\n }\r\n \r\n .transition-transform {\r\n transition: transform 0.3s ease;\r\n }\r\n\r\n #backToTop {\r\n transition: opacity 0.3s ease;\r\n z-index: 100;\r\n }\r\n\r\n \r\n </style>\r\n</head>\r\n<body>\r\n <!-- Navbar -->\r\n <nav class=\"bg-white shadow-lg fixed w-full z-50\">\r\n <div class=\"max-w-7xl mx-auto px-4\">\r\n <div class=\"flex justify-between items-center h-16\">\r\n <div class=\"flex items-center\">\r\n <img src=\"https://dash.bixa.us/assets/default/images/logo-sm.svg\" alt=\"Bixa Logo\" class=\"h-8\">\r\n </div>\r\n <div class=\"flex items-center space-x-8\">\r\n <a href=\"#features\" class=\"text-gray-600 hover:text-indigo-600\">Features</a>\r\n <a href=\"#pricing\" class=\"text-gray-600 hover:text-indigo-600\">Pricing</a>\r\n <a href=\"#compare\" class=\"text-gray-600 hover:text-indigo-600\">Compare</a>\r\n <a href=\"#testimonials\" class=\"text-gray-600 hover:text-indigo-600\">Reviews</a>\r\n <a href=\"/login\" class=\"text-gray-600 hover:text-indigo-600\">Login</a>\r\n <a href=\"/register\" class=\"bg-indigo-600 text-white px-6 py-2 rounded-full hover:bg-indigo-700\">Get Started</a>\r\n </div>\r\n </div>\r\n </div>\r\n </nav>\r\n\r\n <!-- Hero Section -->\r\n <div class=\"gradient-bg pt-32 pb-20\">\r\n <div class=\"max-w-7xl mx-auto px-4\">\r\n <div class=\"text-center\">\r\n <h1 class=\"text-4xl md:text-6xl font-bold text-white mb-6\">Free Web Hosting for Everyone</h1>\r\n <p class=\"text-xl text-white/90 mb-8\">Launch your website with unlimited domains, free SSL certificates, and easy-to-use control panel</p>\r\n <a href=\"/register\" class=\"bg-white text-indigo-600 px-8 py-3 rounded-full text-lg font-semibold hover:bg-gray-100\">Start Hosting Now</a>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n <!-- Enhanced Features Section -->\r\n <div id=\"features\" class=\"py-20 bg-gray-50\">\r\n <div class=\"max-w-7xl mx-auto px-4\">\r\n <h2 class=\"text-3xl font-bold text-center mb-12\">Unleash Your Web Presence with Power-Packed Features</h2>\r\n <div class=\"grid grid-cols-1 md:grid-cols-3 gap-8\">\r\n <!-- Feature 1 -->\r\n <div class=\"bg-white p-8 rounded-xl shadow-sm hover:shadow-md transition-shadow\">\r\n <div class=\"text-center\">\r\n <i class=\"fas fa-rocket text-4xl text-indigo-600 mb-4\"></i>\r\n <h3 class=\"text-xl font-semibold mb-3\">100% Free & Fast!</h3>\r\n <p class=\"text-gray-600\">No hidden fees or costs. Our optimized servers ensure quick loading times for all your websites.</p>\r\n </div>\r\n </div>\r\n\r\n <!-- Feature 2 -->\r\n <div class=\"bg-white p-8 rounded-xl shadow-sm hover:shadow-md transition-shadow\">\r\n <div class=\"text-center\">\r\n <i class=\"fas fa-ban text-4xl text-indigo-600 mb-4\"></i>\r\n <h3 class=\"text-xl font-semibold mb-3\">No Ads</h3>\r\n <p class=\"text-gray-600\">Your website remains clean without any forced advertisements or promotions.</p>\r\n </div>\r\n </div>\r\n\r\n <!-- Feature 3 -->\r\n <div class=\"bg-white p-8 rounded-xl shadow-sm hover:shadow-md transition-shadow\">\r\n <div class=\"text-center\">\r\n <i class=\"fas fa-globe text-4xl text-indigo-600 mb-4\"></i>\r\n <h3 class=\"text-xl font-semibold mb-3\">Unlimited Domains</h3>\r\n <p class=\"text-gray-600\">Host unlimited domains with custom domain support and free subdomains.</p>\r\n </div>\r\n </div>\r\n\r\n <!-- Feature 4 -->\r\n <div class=\"bg-white p-8 rounded-xl shadow-sm hover:shadow-md transition-shadow\">\r\n <div class=\"text-center\">\r\n <i class=\"fas fa-download text-4xl text-indigo-600 mb-4\"></i>\r\n <h3 class=\"text-xl font-semibold mb-3\">Softaculous Installer</h3>\r\n <p class=\"text-gray-600\">Install over 300 web applications with a single click, including WordPress.</p>\r\n </div>\r\n </div>\r\n\r\n <!-- Feature 5 -->\r\n <div class=\"bg-white p-8 rounded-xl shadow-sm hover:shadow-md transition-shadow\">\r\n <div class=\"text-center\">\r\n <i class=\"fas fa-headset text-4xl text-indigo-600 mb-4\"></i>\r\n <h3 class=\"text-xl font-semibold mb-3\">24/7 Support</h3>\r\n <p class=\"text-gray-600\">Access our comprehensive knowledge base and community forum for assistance.</p>\r\n </div>\r\n </div>\r\n\r\n <!-- Feature 6 -->\r\n <div class=\"bg-white p-8 rounded-xl shadow-sm hover:shadow-md transition-shadow\">\r\n <div class=\"text-center\">\r\n <i class=\"fas fa-bolt text-4xl text-indigo-600 mb-4\"></i>\r\n <h3 class=\"text-xl font-semibold mb-3\">Instant Activation</h3>\r\n <p class=\"text-gray-600\">Get your hosting account activated within 5 minutes of registration.</p>\r\n </div>\r\n </div>\r\n\r\n <!-- Feature 7 -->\r\n <div class=\"bg-white p-8 rounded-xl shadow-sm hover:shadow-md transition-shadow\">\r\n <div class=\"text-center\">\r\n <i class=\"fas fa-lock text-4xl text-indigo-600 mb-4\"></i>\r\n <h3 class=\"text-xl font-semibold mb-3\">Free SSL/TLS</h3>\r\n <p class=\"text-gray-600\">Secure your website with free SSL certificates and Cloudflare integration.</p>\r\n </div>\r\n </div>\r\n\r\n <!-- Feature 8 -->\r\n <div class=\"bg-white p-8 rounded-xl shadow-sm hover:shadow-md transition-shadow\">\r\n <div class=\"text-center\">\r\n <i class=\"fas fa-paint-brush text-4xl text-indigo-600 mb-4\"></i>\r\n <h3 class=\"text-xl font-semibold mb-3\">Free Website Builder</h3>\r\n <p class=\"text-gray-600\">Create beautiful websites easily with our integrated Site.Pro builder.</p>\r\n </div>\r\n </div>\r\n\r\n <!-- Feature 9 -->\r\n <div class=\"bg-white p-8 rounded-xl shadow-sm hover:shadow-md transition-shadow\">\r\n <div class=\"text-center\">\r\n <i class=\"fas fa-database text-4xl text-indigo-600 mb-4\"></i>\r\n <h3 class=\"text-xl font-semibold mb-3\">FTP & MySQL</h3>\r\n <p class=\"text-gray-600\">400 MySQL databases and FTP access included with every account.</p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n <!-- Endless Possibilities Section -->\r\n <div class=\"py-20 bg-white\">\r\n <div class=\"max-w-7xl mx-auto px-4\">\r\n <h2 class=\"text-4xl font-bold text-center mb-4\">Endless Possibilities</h2>\r\n <p class=\"text-xl text-gray-600 text-center mb-12\">Discover how Bixa can power your digital dreams</p>\r\n \r\n <div class=\"grid grid-cols-1 md:grid-cols-3 gap-8\">\r\n <!-- Use Case Cards -->\r\n <div onclick=\"showModal(\'blog\')\" class=\"cursor-pointer bg-white p-8 rounded-xl shadow-sm hover:shadow-lg transition-all duration-300 transform hover:scale-105\">\r\n <i class=\"fas fa-blog text-4xl text-indigo-600 mb-4\"></i>\r\n <h3 class=\"text-xl font-semibold mb-3\">Blog & Portfolio</h3>\r\n <p class=\"text-gray-600\">Share your story with the world</p>\r\n </div>\r\n \r\n <div onclick=\"showModal(\'store\')\" class=\"cursor-pointer bg-white p-8 rounded-xl shadow-sm hover:shadow-lg transition-all duration-300 transform hover:scale-105\">\r\n <i class=\"fas fa-shopping-cart text-4xl text-indigo-600 mb-4\"></i>\r\n <h3 class=\"text-xl font-semibold mb-3\">Online Store</h3>\r\n <p class=\"text-gray-600\">Launch your e-commerce journey</p>\r\n </div>\r\n \r\n <div onclick=\"showModal(\'business\')\" class=\"cursor-pointer bg-white p-8 rounded-xl shadow-sm hover:shadow-lg transition-all duration-300 transform hover:scale-105\">\r\n <i class=\"fas fa-briefcase text-4xl text-indigo-600 mb-4\"></i>\r\n <h3 class=\"text-xl font-semibold mb-3\">Business Website</h3>\r\n <p class=\"text-gray-600\">Establish your online presence</p>\r\n </div>\r\n \r\n <div onclick=\"showModal(\'nonprofit\')\" class=\"cursor-pointer bg-white p-8 rounded-xl shadow-sm hover:shadow-lg transition-all duration-300 transform hover:scale-105\">\r\n <i class=\"fas fa-heart text-4xl text-indigo-600 mb-4\"></i>\r\n <h3 class=\"text-xl font-semibold mb-3\">Non-Profit</h3>\r\n <p class=\"text-gray-600\">Make a difference online</p>\r\n </div>\r\n \r\n <div onclick=\"showModal(\'learning\')\" class=\"cursor-pointer bg-white p-8 rounded-xl shadow-sm hover:shadow-lg transition-all duration-300 transform hover:scale-105\">\r\n <i class=\"fas fa-book text-4xl text-indigo-600 mb-4\"></i>\r\n <h3 class=\"text-xl font-semibold mb-3\">Self-Learning</h3>\r\n <p class=\"text-gray-600\">Master web development</p>\r\n </div>\r\n \r\n <div onclick=\"showModal(\'education\')\" class=\"cursor-pointer bg-white p-8 rounded-xl shadow-sm hover:shadow-lg transition-all duration-300 transform hover:scale-105\">\r\n <i class=\"fas fa-graduation-cap text-4xl text-indigo-600 mb-4\"></i>\r\n <h3 class=\"text-xl font-semibold mb-3\">Education</h3>\r\n <p class=\"text-gray-600\">Perfect for students & teachers</p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n <!-- FAQ Section -->\r\n <div class=\"py-20 bg-gray-50\">\r\n <div class=\"max-w-7xl mx-auto px-4\">\r\n <h2 class=\"text-4xl font-bold text-center mb-4\">Curious Minds Ask Great Questions</h2>\r\n <p class=\"text-xl text-gray-600 text-center mb-12\">Here\'s what our community wants to know</p>\r\n\r\n <div class=\"grid grid-cols-1 md:grid-cols-2 gap-8\">\r\n <!-- Left Column -->\r\n <div>\r\n <div class=\"space-y-4\">\r\n <div class=\"border rounded-lg overflow-hidden\">\r\n <button class=\"w-full px-6 py-4 text-left font-semibold flex justify-between items-center hover:bg-gray-50\" onclick=\"toggleFAQ(\'faq1\')\">\r\n How does Bixa stay free forever?\r\n <i class=\"fas fa-chevron-down transition-transform\" id=\"faq1-icon\"></i>\r\n </button>\r\n <div class=\"hidden px-6 py-4 bg-white\" id=\"faq1\">\r\n <p class=\"text-gray-600\">We\'re supported by our amazing community and strategic partnerships, allowing us to provide forever-free hosting while maintaining high-quality service!</p>\r\n </div>\r\n </div>\r\n\r\n <div class=\"border rounded-lg overflow-hidden\">\r\n <button class=\"w-full px-6 py-4 text-left font-semibold flex justify-between items-center hover:bg-gray-50\" onclick=\"toggleFAQ(\'faq2\')\">\r\n What keeps my account active?\r\n <i class=\"fas fa-chevron-down transition-transform\" id=\"faq2-icon\"></i>\r\n </button>\r\n <div class=\"hidden px-6 py-4 bg-white\" id=\"faq2\">\r\n <p class=\"text-gray-600\">Just 5 visitors monthly keeps your site alive! Whether it\'s your loyal audience or your own visits, maintaining activity is super easy.</p>\r\n </div>\r\n </div>\r\n\r\n <div class=\"border rounded-lg overflow-hidden\">\r\n <button class=\"w-full px-6 py-4 text-left font-semibold flex justify-between items-center hover:bg-gray-50\" onclick=\"toggleFAQ(\'faq3\')\">\r\n Will my site show unwanted ads?\r\n <i class=\"fas fa-chevron-down transition-transform\" id=\"faq3-icon\"></i>\r\n </button>\r\n <div class=\"hidden px-6 py-4 bg-white\" id=\"faq3\">\r\n <p class=\"text-gray-600\">Never! Your site remains 100% yours. You\'re free to monetize it yourself, but we\'ll never inject any ads without your permission.</p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n <!-- Right Column -->\r\n <div class=\"space-y-4\">\r\n <div class=\"border rounded-lg overflow-hidden\">\r\n <button class=\"w-full px-6 py-4 text-left font-semibold flex justify-between items-center hover:bg-gray-50\" onclick=\"toggleFAQ(\'faq4\')\">\r\n Is this just a trial version?\r\n <i class=\"fas fa-chevron-down transition-transform\" id=\"faq4-icon\"></i>\r\n </button>\r\n <div class=\"hidden px-6 py-4 bg-white\" id=\"faq4\">\r\n <p class=\"text-gray-600\">Not at all! Our free tier is a complete hosting solution with all essential features included. No hidden upgrades required!</p>\r\n </div>\r\n </div>\r\n\r\n <div class=\"border rounded-lg overflow-hidden\">\r\n <button class=\"w-full px-6 py-4 text-left font-semibold flex justify-between items-center hover:bg-gray-50\" onclick=\"toggleFAQ(\'faq5\')\">\r\n How\'s the SSL situation?\r\n <i class=\"fas fa-chevron-down transition-transform\" id=\"faq5-icon\"></i>\r\n </button>\r\n <div class=\"hidden px-6 py-4 bg-white\" id=\"faq5\">\r\n <p class=\"text-gray-600\">Completely free and automated! One click sets up your SSL certificate, keeping your site secure and trusted.</p>\r\n </div>\r\n </div>\r\n\r\n <div class=\"border rounded-lg overflow-hidden\">\r\n <button class=\"w-full px-6 py-4 text-left font-semibold flex justify-between items-center hover:bg-gray-50\" onclick=\"toggleFAQ(\'faq6\')\">\r\n Can I build without coding?\r\n <i class=\"fas fa-chevron-down transition-transform\" id=\"faq6-icon\"></i>\r\n </button>\r\n <div class=\"hidden px-6 py-4 bg-white\" id=\"faq6\">\r\n <p class=\"text-gray-600\">Absolutely! Our intuitive website builder makes creating stunning sites a breeze, no coding required.</p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n <!-- Pricing Table section -->\r\n <div id=\"pricing\" class=\"py-20 bg-gradient-to-b from-gray-50 to-white\">\r\n <div class=\"max-w-7xl mx-auto px-4\">\r\n <h2 class=\"text-4xl font-bold text-center mb-4\">Unleash Your Web Dreams</h2>\r\n <p class=\"text-xl text-gray-600 text-center mb-12\">No complicated tiers - just pure, unrestricted hosting power</p>\r\n \r\n <!-- Pricing Card -->\r\n <div class=\"max-w-lg mx-auto\">\r\n <div class=\"bg-white rounded-2xl shadow-xl transform hover:scale-105 transition-transform duration-300\">\r\n <div class=\"p-8\">\r\n <!-- Header -->\r\n <div class=\"text-center mb-8\">\r\n <span class=\"inline-block px-4 py-1 rounded-full bg-indigo-100 text-indigo-600 text-sm font-semibold mb-3\">MOST POPULAR</span>\r\n <h3 class=\"text-3xl font-bold mb-2\">Free Forever Plan</h3>\r\n <div class=\"flex justify-center items-baseline my-8\">\r\n <span class=\"text-5xl font-extrabold\">$0</span>\r\n <span class=\"text-xl text-gray-500 ml-1\">/month</span>\r\n </div>\r\n </div>\r\n\r\n <!-- Features -->\r\n <div class=\"space-y-5\">\r\n <div class=\"flex items-center\">\r\n <div class=\"flex-shrink-0 w-6 h-6 rounded-full bg-indigo-100 flex items-center justify-center\">\r\n <i class=\"fas fa-check text-indigo-600 text-sm\"></i>\r\n </div>\r\n <span class=\"ml-3 text-lg\">1GB High-Performance Storage</span>\r\n </div>\r\n <div class=\"flex items-center\">\r\n <div class=\"flex-shrink-0 w-6 h-6 rounded-full bg-indigo-100 flex items-center justify-center\">\r\n <i class=\"fas fa-check text-indigo-600 text-sm\"></i>\r\n </div>\r\n <span class=\"ml-3 text-lg\">Unlimited Bandwidth</span>\r\n </div>\r\n <div class=\"flex items-center\">\r\n <div class=\"flex-shrink-0 w-6 h-6 rounded-full bg-indigo-100 flex items-center justify-center\">\r\n <i class=\"fas fa-check text-indigo-600 text-sm\"></i>\r\n </div>\r\n <span class=\"ml-3 text-lg\">Free SSL Certificate</span>\r\n </div>\r\n <div class=\"flex items-center\">\r\n <div class=\"flex-shrink-0 w-6 h-6 rounded-full bg-indigo-100 flex items-center justify-center\">\r\n <i class=\"fas fa-check text-indigo-600 text-sm\"></i>\r\n </div>\r\n <span class=\"ml-3 text-lg\">24/7 Community Support</span>\r\n </div>\r\n </div>\r\n\r\n <!-- CTA Button -->\r\n <div class=\"mt-10\">\r\n <a href=\"/register\" \r\n class=\"block w-full bg-indigo-600 text-white text-center px-6 py-4 rounded-xl text-lg font-semibold hover:bg-indigo-700 transform hover:scale-105 transition-all duration-200\">\r\n Start Building Now\r\n </a>\r\n <p class=\"text-sm text-center text-gray-500 mt-3\">No credit card required</p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n <!-- Comparison Table section -->\r\n <div id=\"compare\" class=\"py-20\">\r\n <div class=\"max-w-7xl mx-auto px-4\">\r\n <h2 class=\"text-4xl font-bold text-center mb-4\">The Clear Choice for Web Hosting</h2>\r\n <p class=\"text-xl text-gray-600 text-center mb-12\">See how we stack up against other providers</p>\r\n \r\n <!-- Updated comparison cards with enhanced styling -->\r\n <div class=\"grid grid-cols-1 md:grid-cols-3 gap-8\">\r\n <div class=\"bg-white rounded-xl shadow-sm p-8 transform hover:scale-105 transition-all duration-300\">\r\n <div class=\"text-2xl font-semibold mb-8 text-gray-700\">000WebHost</div>\r\n <ul class=\"space-y-6\">\r\n <li class=\"flex items-center text-lg\">\r\n <i class=\"fas fa-check text-green-600 mr-4 text-xl\"></i>\r\n <span>WordPress Installer</span>\r\n </li>\r\n <li class=\"flex items-center text-lg\">\r\n <i class=\"fas fa-check text-green-600 mr-4 text-xl\"></i>\r\n <span>Free SSL (Subdomains Only)</span>\r\n </li>\r\n <li class=\"flex items-center text-lg opacity-50\">\r\n <i class=\"fas fa-times text-red-600 mr-4 text-xl\"></i>\r\n <span class=\"line-through\">Ad Free</span>\r\n </li>\r\n <li class=\"flex items-center text-lg opacity-50\">\r\n <i class=\"fas fa-times text-red-600 mr-4 text-xl\"></i>\r\n <span class=\"line-through\">Unlimited Domains</span>\r\n </li>\r\n </ul>\r\n </div>\r\n\r\n <div class=\"bg-white rounded-xl shadow-xl p-8 transform hover:scale-105 transition-all duration-300 border-2 border-indigo-600 relative -mt-4\">\r\n <div class=\"absolute -top-4 left-1/2 transform -translate-x-1/2 bg-indigo-600 text-white px-6 py-1 rounded-full text-sm font-bold\">\r\n RECOMMENDED\r\n </div>\r\n <div class=\"text-2xl font-semibold mb-8 text-indigo-600\">Bixa</div>\r\n <ul class=\"space-y-6\">\r\n <li class=\"flex items-center text-lg\">\r\n <i class=\"fas fa-check text-green-600 mr-4 text-xl\"></i>\r\n <span>300+ Script Installer</span>\r\n </li>\r\n <li class=\"flex items-center text-lg\">\r\n <i class=\"fas fa-check text-green-600 mr-4 text-xl\"></i>\r\n <span>Free SSL (All Domains)</span>\r\n </li>\r\n <li class=\"flex items-center text-lg\">\r\n <i class=\"fas fa-check text-green-600 mr-4 text-xl\"></i>\r\n <span>Ad Free</span>\r\n </li>\r\n <li class=\"flex items-center text-lg\">\r\n <i class=\"fas fa-check text-green-600 mr-4 text-xl\"></i>\r\n <span>Unlimited Domains</span>\r\n </li>\r\n </ul>\r\n <div class=\"mt-8 text-center\">\r\n <a href=\"/register\" class=\"inline-block bg-indigo-600 text-white px-8 py-3 rounded-full font-semibold hover:bg-indigo-700\">Get Started Free</a>\r\n </div>\r\n </div>\r\n\r\n <div class=\"bg-white rounded-xl shadow-sm p-8 transform hover:scale-105 transition-all duration-300\">\r\n <div class=\"text-2xl font-semibold mb-8 text-gray-700\">AwardSpace</div>\r\n <ul class=\"space-y-6\">\r\n <li class=\"flex items-center text-lg\">\r\n <i class=\"fas fa-check text-green-600 mr-4 text-xl\"></i>\r\n <span>Script Installer</span>\r\n </li>\r\n <li class=\"flex items-center text-lg opacity-50\">\r\n <i class=\"fas fa-times text-red-600 mr-4 text-xl\"></i>\r\n <span class=\"line-through\">Free SSL</span>\r\n </li>\r\n <li class=\"flex items-center text-lg\">\r\n <i class=\"fas fa-check text-green-600 mr-4 text-xl\"></i>\r\n <span>Ad Free</span>\r\n </li>\r\n <li class=\"flex items-center text-lg opacity-50\">\r\n <i class=\"fas fa-times text-red-600 mr-4 text-xl\"></i>\r\n <span class=\"line-through\">Unlimited Domains</span>\r\n </li>\r\n </ul>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n <!-- Testimonials -->\r\n <div id=\"testimonials\" class=\"py-20 bg-gray-50\">\r\n <div class=\"max-w-7xl mx-auto px-4\">\r\n <h2 class=\"text-3xl font-bold text-center mb-12\">What Our Users Say</h2>\r\n <div class=\"grid grid-cols-1 md:grid-cols-3 gap-8\">\r\n <div class=\"bg-white p-6 rounded-xl shadow-sm\">\r\n <p class=\"text-gray-600 mb-4\">\"Best free hosting service I\'ve ever used. The unlimited domains feature is amazing!\"</p>\r\n <div class=\"flex items-center\">\r\n <div class=\"w-10 h-10 bg-indigo-600 rounded-full flex items-center justify-center text-white\">JD</div>\r\n <div class=\"ml-3\">\r\n <p class=\"font-semibold\">John Doe</p>\r\n <p class=\"text-sm text-gray-500\">Web Developer</p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"bg-white p-6 rounded-xl shadow-sm\">\r\n <p class=\"text-gray-600 mb-4\">\"The control panel is so easy to use. Perfect for beginners!\"</p>\r\n <div class=\"flex items-center\">\r\n <div class=\"w-10 h-10 bg-indigo-600 rounded-full flex items-center justify-center text-white\">JS</div>\r\n <div class=\"ml-3\">\r\n <p class=\"font-semibold\">Jane Smith</p>\r\n <p class=\"text-sm text-gray-500\">Business Owner</p>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"bg-white p-6 rounded-xl shadow-sm\">\r\n <p class=\"text-gray-600 mb-4\">\"Free SSL certificates and great uptime. Couldn\'t ask for more!\"</p>\r\n <div class=\"flex items-center\">\r\n <div class=\"w-10 h-10 bg-indigo-600 rounded-full flex items-center justify-center text-white\">MB</div>\r\n <div class=\"ml-3\">\r\n <p class=\"font-semibold\">Mike Brown</p>\r\n <p class=\"text-sm text-gray-500\">Blogger</p>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n <!-- CTA Banner -->\r\n <div class=\"bg-indigo-600 py-16\">\r\n <div class=\"max-w-7xl mx-auto px-4 text-center\">\r\n <h2 class=\"text-3xl font-bold text-white mb-6\">Ready to Launch Your Website?</h2>\r\n <p class=\"text-xl text-white/90 mb-8\">Join thousands of happy users and start building your web presence today.</p>\r\n <a href=\"/register\" class=\"inline-block bg-white text-indigo-600 px-8 py-3 rounded-full text-lg font-semibold hover:bg-gray-100\">Start Hosting Now - It\'s Free!</a>\r\n </div>\r\n </div>\r\n\r\n <!-- Back to Top Button -->\r\n <button id=\"backToTop\" class=\"fixed bottom-8 right-8 bg-indigo-600 text-white w-12 h-12 rounded-full shadow-lg flex items-center justify-center hover:bg-indigo-700 transition-colors hidden\">\r\n <i class=\"fas fa-arrow-up\"></i>\r\n </button>\r\n\r\n <!-- Modal Template -->\r\n <div id=\"usecase-modal\" class=\"fixed inset-0 bg-black bg-opacity-50 hidden items-center justify-center z-50\">\r\n <div class=\"bg-white rounded-xl max-w-2xl mx-4 p-8 relative\">\r\n <button onclick=\"hideModal()\" class=\"absolute top-4 right-4 text-gray-500 hover:text-gray-700\">\r\n <i class=\"fas fa-times text-xl\"></i>\r\n </button>\r\n <div id=\"modal-content\"></div>\r\n </div>\r\n </div>\r\n\r\n <!-- Footer -->\r\n <footer class=\"bg-gray-800 text-white py-12\">\r\n <div class=\"max-w-7xl mx-auto px-4\">\r\n <div class=\"grid grid-cols-1 md:grid-cols-4 gap-8\">\r\n <div>\r\n <h3 class=\"text-xl font-bold mb-4\">BIXA</h3>\r\n <p class=\"text-gray-400\">Free web hosting for everyone.</p>\r\n </div>\r\n <div>\r\n <h4 class=\"font-semibold mb-4\">Quick Links</h4>\r\n <ul class=\"space-y-2\">\r\n <li><a href=\"/login\" class=\"text-gray-400 hover:text-white\">Login</a></li>\r\n <li><a href=\"/register\" class=\"text-gray-400 hover:text-white\">Register</a></li>\r\n <li><a href=\"/kb\" class=\"text-gray-400 hover:text-white\">Knowledge Base</a></li>\r\n </ul>\r\n </div>\r\n <div>\r\n <h4 class=\"font-semibold mb-4\">Resources</h4>\r\n <ul class=\"space-y-2\">\r\n <li><a href=\"/forum\" class=\"text-gray-400 hover:text-white\">Community Forum</a></li>\r\n <li><a href=\"/tos\" class=\"text-gray-400 hover:text-white\">Terms of Service</a></li>\r\n <li><a href=\"/privacy\" class=\"text-gray-400 hover:text-white\">Privacy Policy</a></li>\r\n </ul>\r\n </div>\r\n <div>\r\n <h4 class=\"font-semibold mb-4\">Connect</h4>\r\n <div class=\"flex space-x-4\">\r\n <a href=\"https://twitter.com/bixa\" class=\"text-gray-400 hover:text-white\"><i class=\"fab fa-twitter\"></i></a>\r\n <a href=\"https://facebook.com/bixa\" class=\"text-gray-400 hover:text-white\"><i class=\"fab fa-facebook\"></i></a>\r\n <a href=\"https://github.com/bixa\" class=\"text-gray-400 hover:text-white\"><i class=\"fab fa-github\"></i></a>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"border-t border-gray-700 mt-8 pt-8 text-center text-gray-400\">\r\n <p>© 2024 Bixa. All rights reserved.</p>\r\n </div>\r\n </div>\r\n </footer>\r\n <script>\r\n const useCases = {\r\n blog: {\r\n title: \"Launch Your Blog & Portfolio\",\r\n content: `\r\n <div class=\"space-y-4\">\r\n <h3 class=\"text-2xl font-bold mb-4\">Showcase Your Creativity</h3>\r\n <div class=\"grid grid-cols-1 md:grid-cols-2 gap-4 mb-4\">\r\n <div>\r\n <img src=\"/images/hero/wordpress-sub2.png\" class=\"rounded-lg border-2 border-gray-200\" alt=\"WordPress Dashboard\">\r\n </div>\r\n <div class=\"space-y-4\">\r\n <p class=\"text-lg\">Start your blogging journey with our optimized WordPress hosting:</p>\r\n <ul class=\"list-disc pl-5 space-y-2\">\r\n <li>One-click WordPress installation</li>\r\n <li>Free themes and plugins</li>\r\n <li>Built-in SEO tools</li>\r\n <li>Automatic backups</li>\r\n </ul>\r\n <p>Get your blog online in under 5 minutes!</p>\r\n </div>\r\n </div>\r\n <div class=\"mt-6\">\r\n <h4 class=\"font-semibold mb-2\">Perfect For:</h4>\r\n <ul class=\"list-disc pl-5 grid grid-cols-2 gap-2\">\r\n <li>Personal blogs</li>\r\n <li>Photography portfolios</li>\r\n <li>Writing collections</li>\r\n <li>Creative showcases</li>\r\n </ul>\r\n </div>\r\n </div>\r\n `\r\n },\r\n store: {\r\n title: \"Build Your Online Store\",\r\n content: `\r\n <div class=\"space-y-4\">\r\n <h3 class=\"text-2xl font-bold mb-4\">Start Selling Online Today</h3>\r\n <div class=\"grid grid-cols-1 md:grid-cols-2 gap-4 mb-4\">\r\n <div>\r\n <img src=\"/images/hero/store-demo.png\" class=\"rounded-lg border-2 border-gray-200\" alt=\"E-commerce Store\">\r\n </div>\r\n <div class=\"space-y-4\">\r\n <p class=\"text-lg\">Launch your e-commerce business with powerful features:</p>\r\n <ul class=\"list-disc pl-5 space-y-2\">\r\n <li>WooCommerce integration</li>\r\n <li>Secure payment processing</li>\r\n <li>Inventory management</li>\r\n <li>Order tracking system</li>\r\n </ul>\r\n <p>Begin your e-commerce journey with zero setup costs!</p>\r\n </div>\r\n </div>\r\n <div class=\"mt-6\">\r\n <h4 class=\"font-semibold mb-2\">Ideal For:</h4>\r\n <ul class=\"list-disc pl-5 grid grid-cols-2 gap-2\">\r\n <li>Digital products</li>\r\n <li>Physical goods</li>\r\n <li>Subscription services</li>\r\n <li>Dropshipping</li>\r\n </ul>\r\n </div>\r\n </div>\r\n `\r\n },\r\n business: {\r\n title: \"Professional Business Website\",\r\n content: `\r\n <div class=\"space-y-4\">\r\n <h3 class=\"text-2xl font-bold mb-4\">Establish Your Online Presence</h3>\r\n <div class=\"grid grid-cols-1 md:grid-cols-2 gap-4 mb-4\">\r\n <div>\r\n <img src=\"/images/hero/business-demo.png\" class=\"rounded-lg border-2 border-gray-200\" alt=\"Business Website\">\r\n </div>\r\n <div class=\"space-y-4\">\r\n <p class=\"text-lg\">Create a professional business website with:</p>\r\n <ul class=\"list-disc pl-5 space-y-2\">\r\n <li>Professional email hosting</li>\r\n <li>Business directory listings</li>\r\n <li>Contact forms & maps</li>\r\n <li>Service showcases</li>\r\n </ul>\r\n <p>Build trust and credibility with a professional website!</p>\r\n </div>\r\n </div>\r\n <div class=\"mt-6\">\r\n <h4 class=\"font-semibold mb-2\">Perfect For:</h4>\r\n <ul class=\"list-disc pl-5 grid grid-cols-2 gap-2\">\r\n <li>Small businesses</li>\r\n <li>Freelancers</li>\r\n <li>Service providers</li>\r\n <li>Consultants</li>\r\n </ul>\r\n </div>\r\n </div>\r\n `\r\n },\r\n nonprofit: {\r\n title: \"Empower Your Non-Profit\",\r\n content: `\r\n <div class=\"space-y-4\">\r\n <h3 class=\"text-2xl font-bold mb-4\">Make a Difference Online</h3>\r\n <div class=\"grid grid-cols-1 md:grid-cols-2 gap-4 mb-4\">\r\n <div>\r\n <img src=\"/images/hero/nonprofit-demo.png\" class=\"rounded-lg border-2 border-gray-200\" alt=\"Non-profit Website\">\r\n </div>\r\n <div class=\"space-y-4\">\r\n <p class=\"text-lg\">Everything you need to support your cause:</p>\r\n <ul class=\"list-disc pl-5 space-y-2\">\r\n <li>Donation system integration</li>\r\n <li>Event management tools</li>\r\n <li>Volunteer portals</li>\r\n <li>Campaign pages</li>\r\n </ul>\r\n <p>Create impact with zero hosting costs!</p>\r\n </div>\r\n </div>\r\n <div class=\"mt-6\">\r\n <h4 class=\"font-semibold mb-2\">Ideal For:</h4>\r\n <ul class=\"list-disc pl-5 grid grid-cols-2 gap-2\">\r\n <li>Charities</li>\r\n <li>NGOs</li>\r\n <li>Community groups</li>\r\n <li>Social enterprises</li>\r\n </ul>\r\n </div>\r\n </div>\r\n `\r\n },\r\n learning: {\r\n title: \"Self-Learning Platform\",\r\n content: `\r\n <div class=\"space-y-4\">\r\n <h3 class=\"text-2xl font-bold mb-4\">Master Web Development</h3>\r\n <div class=\"grid grid-cols-1 md:grid-cols-2 gap-4 mb-4\">\r\n <div>\r\n <img src=\"/images/hero/learning-demo.png\" class=\"rounded-lg border-2 border-gray-200\" alt=\"Learning Platform\">\r\n </div>\r\n <div class=\"space-y-4\">\r\n <p class=\"text-lg\">Perfect environment for learning:</p>\r\n <ul class=\"list-disc pl-5 space-y-2\">\r\n <li>PHP & MySQL support</li>\r\n <li>FTP access</li>\r\n <li>Development tools</li>\r\n <li>Easy deployment</li>\r\n </ul>\r\n <p>Start your coding journey today!</p>\r\n </div>\r\n </div>\r\n <div class=\"mt-6\">\r\n <h4 class=\"font-semibold mb-2\">Great For Learning:</h4>\r\n <ul class=\"list-disc pl-5 grid grid-cols-2 gap-2\">\r\n <li>HTML & CSS</li>\r\n <li>JavaScript</li>\r\n <li>PHP</li>\r\n <li>MySQL</li>\r\n </ul>\r\n </div>\r\n </div>\r\n `\r\n },\r\n education: {\r\n title: \"Educational Hosting\",\r\n content: `\r\n <div class=\"space-y-4\">\r\n <h3 class=\"text-2xl font-bold mb-4\">Power Your Educational Projects</h3>\r\n <div class=\"grid grid-cols-1 md:grid-cols-2 gap-4 mb-4\">\r\n <div>\r\n <img src=\"/images/hero/education-demo.png\" class=\"rounded-lg border-2 border-gray-200\" alt=\"Education Platform\">\r\n </div>\r\n <div class=\"space-y-4\">\r\n <p class=\"text-lg\">Built for education:</p>\r\n <ul class=\"list-disc pl-5 space-y-2\">\r\n <li>Learning management systems</li>\r\n <li>Student portfolios</li>\r\n <li>Class project hosting</li>\r\n <li>Educational resources</li>\r\n </ul>\r\n <p>Support the next generation of developers!</p>\r\n </div>\r\n </div>\r\n <div class=\"mt-6\">\r\n <h4 class=\"font-semibold mb-2\">Perfect For:</h4>\r\n <ul class=\"list-disc pl-5 grid grid-cols-2 gap-2\">\r\n <li>Students</li>\r\n <li>Teachers</li>\r\n <li>Schools</li>\r\n <li>Training programs</li>\r\n </ul>\r\n </div>\r\n </div>\r\n `\r\n }\r\n };\r\n\r\n function showModal(useCase) {\r\n const modal = document.getElementById(\'usecase-modal\');\r\n const content = document.getElementById(\'modal-content\');\r\n const data = useCases[useCase];\r\n \r\n content.innerHTML = `\r\n <h3 class=\"text-2xl font-bold mb-4\">${data.title}</h3>\r\n ${data.content}\r\n <div class=\"mt-6 text-center\">\r\n <a href=\"/register\" class=\"inline-block bg-indigo-600 text-white px-6 py-2 rounded-full hover:bg-indigo-700\">Get Started Free</a>\r\n </div>\r\n `;\r\n \r\n modal.classList.remove(\'hidden\');\r\n modal.classList.add(\'flex\');\r\n }\r\n\r\n function hideModal() {\r\n const modal = document.getElementById(\'usecase-modal\');\r\n modal.classList.add(\'hidden\');\r\n modal.classList.remove(\'flex\');\r\n }\r\n\r\n // Back to Top functionality\r\n const backToTopButton = document.getElementById(\'backToTop\');\r\n\r\n window.addEventListener(\'scroll\', () => {\r\n if (window.pageYOffset > 300) {\r\n backToTopButton.classList.remove(\'hidden\');\r\n } else {\r\n backToTopButton.classList.add(\'hidden\');\r\n }\r\n });\r\n\r\n backToTopButton.addEventListener(\'click\', () => {\r\n window.scrollTo({\r\n top: 0,\r\n behavior: \'smooth\'\r\n });\r\n });\r\n\r\n // FAQ Toggle functionality\r\n function toggleFAQ(id) {\r\n const content = document.getElementById(id);\r\n const icon = document.getElementById(`${id}-icon`);\r\n \r\n content.classList.toggle(\'hidden\');\r\n icon.classList.toggle(\'rotate-180\');\r\n }\r\n </script>\r\n</body>\r\n</html>', 1, '2024-12-27 15:29:40', '2024-12-28 17:31:35');
-- --------------------------------------------------------
--
-- Table structure for table `is_account`
--
CREATE TABLE `is_account` (
`account_id` int(11) NOT NULL,
`account_label` varchar(250) NOT NULL,
`account_username` varchar(20) NOT NULL,
`account_password` varchar(20) NOT NULL,
`account_status` varchar(20) NOT NULL,
`account_sql` varchar(6) NOT NULL DEFAULT 'sqlxxx',
`account_key` varchar(8) NOT NULL,
`account_for` varchar(16) NOT NULL,
`account_time` varchar(20) NOT NULL,
`account_domain` varchar(50) NOT NULL,
`account_main` varchar(50) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `is_acme`
--
CREATE TABLE `is_acme` (
`acme_id` varchar(13) NOT NULL DEFAULT 'xera_acme',
`acme_letsencrypt` varchar(100) NOT NULL,
`acme_zerossl` varchar(1000) NOT NULL,
`acme_googletrust` varchar(1000) NOT NULL,
`acme_status` varchar(8) NOT NULL,
`acme_dns` varchar(500) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `is_acme`
--
INSERT INTO `is_acme` (`acme_id`, `acme_letsencrypt`, `acme_zerossl`, `acme_googletrust`, `acme_status`, `acme_dns`) VALUES
('xera_acme', '', 'not-set', 'not-set', 'inactive', '');
-- --------------------------------------------------------
--
-- Table structure for table `is_admin`
--
CREATE TABLE `is_admin` (
`admin_id` int(11) NOT NULL,
`admin_name` varchar(50) NOT NULL,
`admin_email` varchar(100) NOT NULL,
`admin_password` varchar(100) NOT NULL,
`admin_key` varchar(16) NOT NULL,
`admin_rec` varchar(32) NOT NULL,
`admin_status` varchar(8) NOT NULL,
`admin_date` varchar(20) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `is_ads`
--
CREATE TABLE `is_ads` (
`ad_id` int(11) NOT NULL,
`ad_name` varchar(255) NOT NULL,
`ad_content` text NOT NULL,
`ad_placement` varchar(50) NOT NULL,
`ad_status` enum('active','inactive') NOT NULL DEFAULT 'active',
`ad_created` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `is_base`
--
CREATE TABLE `is_base` (
`base_id` varchar(89) NOT NULL DEFAULT 'xera_base',
`base_name` varchar(20) NOT NULL,
`base_email` varchar(100) NOT NULL,
`base_fourm` varchar(100) NOT NULL,
`base_template` varchar(100) NOT NULL DEFAULT 'default',
`base_status` varchar(8) NOT NULL,
`base_rpp` int(10) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `is_base`
--
INSERT INTO `is_base` (`base_id`, `base_name`, `base_email`, `base_fourm`, `base_template`, `base_status`, `base_rpp`) VALUES
('xera_base', 'Web Host', 'abc@gmail.com', 'https://fourm.example.com', 'default', 'active', 1);
-- --------------------------------------------------------
--
-- Table structure for table `is_builder`
--
CREATE TABLE `is_builder` (
`builder_id` varchar(12) NOT NULL DEFAULT 'xera_builder',
`builder_hostname` varchar(100) NOT NULL,
`builder_username` varchar(100) NOT NULL,
`builder_password` varchar(100) NOT NULL,
`builder_status` varchar(8) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `is_builder`
--
INSERT INTO `is_builder` (`builder_id`, `builder_hostname`, `builder_username`, `builder_password`, `builder_status`) VALUES
('xera_builder', 'https://site.pro', 'username', 'password', 'inactive');
-- --------------------------------------------------------
--
-- Table structure for table `is_domain`
--
CREATE TABLE `is_domain` (
`domain_id` int(11) NOT NULL,
`domain_name` varchar(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `is_domain`
--
INSERT INTO `is_domain` (`domain_id`, `domain_name`) VALUES
(1, '.example.com');
-- --------------------------------------------------------
--
-- Table structure for table `is_email`
--
CREATE TABLE `is_email` (
`email_id` varchar(50) NOT NULL,
`email_subject` varchar(200) NOT NULL,
`email_content` mediumtext NOT NULL,
`email_for` varchar(8) NOT NULL,
`email_doc` varchar(500) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `is_email`
--
INSERT INTO `is_email` (`email_id`, `email_subject`, `email_content`, `email_for`, `email_doc`) VALUES
('new_user', 'Verification required', '<table id=\"u_body\" style=\"border-collapse: collapse; table-layout: fixed; border-spacing: 0; mso-table-lspace: 0pt; mso-table-rspace: 0pt; vertical-align: top; min-width: 320px; margin: 0 auto; background-color: #ecf0f1; width: 100%;\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"vertical-align: top;\">\r\n<td>\r\n<div class=\"u-row-container\" style=\"padding: 0px; background-color: transparent;\">\r\n<div class=\"u-row\" style=\"margin: 0 auto; min-width: 320px; max-width: 600px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: transparent;\">\r\n<div style=\"border-collapse: collapse; display: table; width: 100%; height: 100%; background-color: transparent;\">\r\n<div id=\"u_column_2\" class=\"u-col u-col-100\" style=\"max-width: 320px; min-width: 600px; display: table-cell; vertical-align: top;\">\r\n<div style=\"background-color: #ffffff; height: 100%; width: 100% !important; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px;\">\r\n<div class=\"v-col-border\" style=\"box-sizing: border-box; height: 100%; padding: 0px; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px; border: 15px solid #2196F3;\"><!-- Logo Section -->\r\n<table id=\"u_content_heading_1\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 20px 0px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<h1 class=\"v-text-align\" style=\"margin: 0px; color: #000000; line-height: 140%; text-align: center; word-wrap: break-word; font-size: 22px; font-weight: 400;\">{site_name}</h1>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Main Content -->\r\n<table id=\"u_content_text_2\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 20px 40px 10px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div class=\"v-text-align\" style=\"font-size: 14px; line-height: 140%; text-align: left; word-wrap: break-word;\">\r\n<p style=\"line-height: 140%;\">Hi {user_name},</p>\r\n<br>\r\n<div style=\"background: #E3F2FD; padding: 20px; border-left: 4px solid #2196F3; border-radius: 5px;\">\r\n<p style=\"line-height: 170%;\">Your account needs to be verified before you can start using our services. Please click the button below to verify your account.</p>\r\n</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Verify Button -->\r\n<table id=\"u_content_button_1\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 10px 10px 10px 40px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div class=\"v-text-align\" align=\"center\"><a class=\"v-button v-size-width\" style=\"box-sizing: border-box; display: inline-block; text-decoration: none; -webkit-text-size-adjust: none; text-align: center; color: #ffffff; background-color: #2196f3; border-radius: 50px; -webkit-border-radius: 50px; -moz-border-radius: 50px; width: 50%; max-width: 100%; overflow-wrap: break-word; word-break: break-word; word-wrap: break-word; mso-border-alt: none; font-size: 14px;\" href=\"{activation_link}\" target=\"_blank\" rel=\"noopener\"> <span style=\"display: block; padding: 15px 20px; line-height: 120%;\"><strong>Verify Account</strong></span> </a></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Additional Info -->\r\n<table id=\"u_content_text_1\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 20px 40px 30px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div class=\"v-text-align\" style=\"font-size: 14px; line-height: 140%; text-align: left; word-wrap: break-word;\">\r\n<p style=\"line-height: 140%; font-size: 12px; color: #666666;\">If the button doesn\'t work, you can copy and paste this link into your browser:</p>\r\n<p style=\"line-height: 140%; font-size: 12px; color: #2196f3;\">{activation_link}</p>\r\n<br>\r\n<p style=\"line-height: 140%;\">After verification, you\'ll have full access to:</p>\r\n<ul style=\"margin-left: 20px;\">\r\n<li>Hosting control panel</li>\r\n<li>Email services</li>\r\n<li>Support system</li>\r\n<li>All other features</li>\r\n</ul>\r\n<br>\r\n<p style=\"line-height: 140%;\">Regards,<br>{site_name}</p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Divider Image -->\r\n<table style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 0px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-text-align\" style=\"padding-right: 0px; padding-left: 0px;\" align=\"center\"><img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: inline-block !important; border: none; height: auto; float: none; width: 90%; max-width: 540px;\" title=\"Divider\" src=\"https://i.ibb.co/GFy4JM6/image-1.png\" alt=\"Divider\" width=\"540\" align=\"center\" border=\"0\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<!-- Footer Section -->\r\n<div class=\"u-row-container\" style=\"padding: 0px; background-color: transparent;\">\r\n<div class=\"u-row\" style=\"margin: 0 auto; min-width: 320px; max-width: 600px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: transparent;\">\r\n<div style=\"border-collapse: collapse; display: table; width: 100%; height: 100%; background-color: transparent;\">\r\n<div class=\"u-col u-col-100\" style=\"max-width: 320px; min-width: 600px; display: table-cell; vertical-align: top;\">\r\n<div style=\"background-color: #8d95ff; height: 100%; width: 100% !important; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px;\">\r\n<div style=\"box-sizing: border-box; height: 100%; padding: 0px;\"><!-- Social Media Icons --><!-- Social Media Icons -->\r\n<table id=\"u_content_social_1\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 50px 10px 10px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div style=\"direction: ltr;\" align=\"center\">\r\n<div style=\"display: table; max-width: 167px;\"><!-- Social Icons Container -->\r\n<table style=\"width: 32px !important; height: 32px !important; display: inline-block; border-collapse: collapse; table-layout: fixed; border-spacing: 0; vertical-align: top; margin-right: 10px;\" border=\"0\" width=\"32\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\">\r\n<tbody>\r\n<tr style=\"vertical-align: top;\">\r\n<td style=\"word-break: break-word; border-collapse: collapse !important; vertical-align: top;\" align=\"left\" valign=\"middle\"><a title=\"Facebook\" href=\"https://facebook.com/\" target=\"_blank\" rel=\"noopener\"> <img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: block !important; border: none; height: auto; float: none; max-width: 32px !important;\" title=\"Facebook\" src=\"https://i.ibb.co/cD3kS6F/image-2.png\" alt=\"Facebook\" width=\"32\"> </a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table style=\"width: 32px !important; height: 32px !important; display: inline-block; border-collapse: collapse; table-layout: fixed; border-spacing: 0; vertical-align: top; margin-right: 10px;\" border=\"0\" width=\"32\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\">\r\n<tbody>\r\n<tr style=\"vertical-align: top;\">\r\n<td style=\"word-break: break-word; border-collapse: collapse !important; vertical-align: top;\" align=\"left\" valign=\"middle\"><a title=\"LinkedIn\" href=\"https://linkedin.com/\" target=\"_blank\" rel=\"noopener\"> <img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: block !important; border: none; height: auto; float: none; max-width: 32px !important;\" title=\"LinkedIn\" src=\"https://i.ibb.co/xhqvPc8/image-3.png\" alt=\"LinkedIn\" width=\"32\"> </a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table style=\"width: 32px !important; height: 32px !important; display: inline-block; border-collapse: collapse; table-layout: fixed; border-spacing: 0; vertical-align: top; margin-right: 10px;\" border=\"0\" width=\"32\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\">\r\n<tbody>\r\n<tr style=\"vertical-align: top;\">\r\n<td style=\"word-break: break-word; border-collapse: collapse !important; vertical-align: top;\" align=\"left\" valign=\"middle\"><a title=\"Instagram\" href=\"https://instagram.com/\" target=\"_blank\" rel=\"noopener\"> <img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: block !important; border: none; height: auto; float: none; max-width: 32px !important;\" title=\"Instagram\" src=\"https://i.ibb.co/q0374vh/image-4.png\" alt=\"Instagram\" width=\"32\"> </a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table style=\"width: 32px !important; height: 32px !important; display: inline-block; border-collapse: collapse; table-layout: fixed; border-spacing: 0; vertical-align: top; margin-right: 0px;\" border=\"0\" width=\"32\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\">\r\n<tbody>\r\n<tr style=\"vertical-align: top;\">\r\n<td style=\"word-break: break-word; border-collapse: collapse !important; vertical-align: top;\" align=\"left\" valign=\"middle\"><a title=\"X\" href=\"https://twitter.com/\" target=\"_blank\" rel=\"noopener\"> <img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: block !important; border: none; height: auto; float: none; max-width: 32px !important;\" title=\"X\" src=\"https://i.ibb.co/5KYnXP0/image-5.png\" alt=\"X\" width=\"32\"> </a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Footer Text -->\r\n<table id=\"u_content_text_3\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 10px 100px 30px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div class=\"v-text-align\" style=\"font-size: 14px; color: #ffffff; line-height: 170%; text-align: center; word-wrap: break-word;\">\r\n<p style=\"font-size: 14px; line-height: 170%;\">PRIVACY POLICY | TERMS OF SERVICE | SUPPORT</p>\r\n<p style=\"font-size: 14px; line-height: 170%;\"> </p>\r\n<p style=\"font-size: 14px; line-height: 170%;\">If you have any questions about your account security, please contact {site_name} support team immediately.</p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>', 'user', '{user_name} {user_email} {activation_link} {site_name} {site_url}'),
('forget_password', 'Action required', '<table id=\"u_body\" style=\"border-collapse: collapse; table-layout: fixed; border-spacing: 0; mso-table-lspace: 0pt; mso-table-rspace: 0pt; vertical-align: top; min-width: 320px; margin: 0 auto; background-color: #ecf0f1; width: 100%;\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"vertical-align: top;\">\r\n<td style=\"word-break: break-word; border-collapse: collapse !important; vertical-align: top;\">\r\n<div class=\"u-row-container\" style=\"padding: 0px; background-color: transparent;\">\r\n<div class=\"u-row\" style=\"margin: 0 auto; min-width: 320px; max-width: 600px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: transparent;\">\r\n<div style=\"border-collapse: collapse; display: table; width: 100%; height: 100%; background-color: transparent;\">\r\n<div id=\"u_column_2\" class=\"u-col u-col-100\" style=\"max-width: 320px; min-width: 600px; display: table-cell; vertical-align: top;\">\r\n<div style=\"background-color: #ffffff; height: 100%; width: 100% !important; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px;\">\r\n<div class=\"v-col-border\" style=\"box-sizing: border-box; height: 100%; padding: 0px; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px; border: 15px solid #8d95ff;\"><!-- Logo Section -->\r\n<table id=\"u_content_heading_1\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 20px 0px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<h1 class=\"v-text-align\" style=\"margin: 0px; color: #000000; line-height: 140%; text-align: center; word-wrap: break-word; font-size: 22px; font-weight: 400;\">{site_name}</h1>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 10px 0px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<table style=\"border-collapse: collapse; table-layout: fixed; border-spacing: 0; mso-table-lspace: 0pt; mso-table-rspace: 0pt; vertical-align: top; border-top: 1px solid #BBBBBB; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr style=\"vertical-align: top;\">\r\n<td style=\"word-break: break-word; border-collapse: collapse !important; vertical-align: top; font-size: 0px; line-height: 0px; mso-line-height-rule: exactly; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;\"> </td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Main Content -->\r\n<table id=\"u_content_text_2\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 20px 40px 10px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div class=\"v-text-align\" style=\"font-size: 14px; line-height: 140%; text-align: left; word-wrap: break-word;\">\r\n<p style=\"line-height: 140%;\">Dear {user_name},</p>\r\n<br>\r\n<p style=\"line-height: 140%;\">We received a request to reset your password for your {site_name} account. Please click the button below to create a new password.</p>\r\n<br><strong>Reference:</strong> #{site_name}-{user_name}</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Button Section -->\r\n<table id=\"u_content_button_1\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 10px 10px 10px 40px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div class=\"v-text-align\" align=\"left\"><a class=\"v-button v-size-width\" style=\"box-sizing: border-box; display: inline-block; text-decoration: none; -webkit-text-size-adjust: none; text-align: center; color: #000000; background-color: #ffc25e; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px; width: 42%; max-width: 100%; overflow-wrap: break-word; word-break: break-word; word-wrap: break-word; mso-border-alt: none; font-size: 14px;\" href=\"{new_password}\" target=\"_blank\" rel=\"noopener\"> <span style=\"display: block; padding: 10px 20px; line-height: 120%;\">Reset Password</span> </a></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Info Text -->\r\n<table id=\"u_content_text_1\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 20px 40px 30px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div class=\"v-text-align\" style=\"font-size: 14px; line-height: 140%; text-align: left; word-wrap: break-word;\"><em><strong>This password reset link will expire in 1 hours</strong></em> <br><br>If you did not request this password reset, please ignore this email or contact support if you have concerns about your account security.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Divider Image -->\r\n<table style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 0px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-text-align\" style=\"padding-right: 0px; padding-left: 0px;\" align=\"center\"><img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: inline-block !important; border: none; height: auto; float: none; width: 90%; max-width: 540px;\" title=\"Divider\" src=\"https://i.ibb.co/GFy4JM6/image-1.png\" alt=\"Divider\" width=\"540\" align=\"center\" border=\"0\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<!-- Footer Section -->\r\n<div class=\"u-row-container\" style=\"padding: 0px; background-color: transparent;\">\r\n<div class=\"u-row\" style=\"margin: 0 auto; min-width: 320px; max-width: 600px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: transparent;\">\r\n<div style=\"border-collapse: collapse; display: table; width: 100%; height: 100%; background-color: transparent;\">\r\n<div class=\"u-col u-col-100\" style=\"max-width: 320px; min-width: 600px; display: table-cell; vertical-align: top;\">\r\n<div style=\"background-color: #8d95ff; height: 100%; width: 100% !important; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px;\">\r\n<div style=\"box-sizing: border-box; height: 100%; padding: 0px;\"><!-- Social Media Icons --><!-- Social Media Icons -->\r\n<table id=\"u_content_social_1\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 50px 10px 10px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div style=\"direction: ltr;\" align=\"center\">\r\n<div style=\"display: table; max-width: 167px;\"><!-- Social Icons Container -->\r\n<table style=\"width: 32px !important; height: 32px !important; display: inline-block; border-collapse: collapse; table-layout: fixed; border-spacing: 0; vertical-align: top; margin-right: 10px;\" border=\"0\" width=\"32\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\">\r\n<tbody>\r\n<tr style=\"vertical-align: top;\">\r\n<td style=\"word-break: break-word; border-collapse: collapse !important; vertical-align: top;\" align=\"left\" valign=\"middle\"><a title=\"Facebook\" href=\"https://facebook.com/\" target=\"_blank\" rel=\"noopener\"> <img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: block !important; border: none; height: auto; float: none; max-width: 32px !important;\" title=\"Facebook\" src=\"https://i.ibb.co/cD3kS6F/image-2.png\" alt=\"Facebook\" width=\"32\"> </a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table style=\"width: 32px !important; height: 32px !important; display: inline-block; border-collapse: collapse; table-layout: fixed; border-spacing: 0; vertical-align: top; margin-right: 10px;\" border=\"0\" width=\"32\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\">\r\n<tbody>\r\n<tr style=\"vertical-align: top;\">\r\n<td style=\"word-break: break-word; border-collapse: collapse !important; vertical-align: top;\" align=\"left\" valign=\"middle\"><a title=\"LinkedIn\" href=\"https://linkedin.com/\" target=\"_blank\" rel=\"noopener\"> <img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: block !important; border: none; height: auto; float: none; max-width: 32px !important;\" title=\"LinkedIn\" src=\"https://i.ibb.co/xhqvPc8/image-3.png\" alt=\"LinkedIn\" width=\"32\"> </a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table style=\"width: 32px !important; height: 32px !important; display: inline-block; border-collapse: collapse; table-layout: fixed; border-spacing: 0; vertical-align: top; margin-right: 10px;\" border=\"0\" width=\"32\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\">\r\n<tbody>\r\n<tr style=\"vertical-align: top;\">\r\n<td style=\"word-break: break-word; border-collapse: collapse !important; vertical-align: top;\" align=\"left\" valign=\"middle\"><a title=\"Instagram\" href=\"https://instagram.com/\" target=\"_blank\" rel=\"noopener\"> <img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: block !important; border: none; height: auto; float: none; max-width: 32px !important;\" title=\"Instagram\" src=\"https://i.ibb.co/q0374vh/image-4.png\" alt=\"Instagram\" width=\"32\"> </a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table style=\"width: 32px !important; height: 32px !important; display: inline-block; border-collapse: collapse; table-layout: fixed; border-spacing: 0; vertical-align: top; margin-right: 0px;\" border=\"0\" width=\"32\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\">\r\n<tbody>\r\n<tr style=\"vertical-align: top;\">\r\n<td style=\"word-break: break-word; border-collapse: collapse !important; vertical-align: top;\" align=\"left\" valign=\"middle\"><a title=\"X\" href=\"https://twitter.com/\" target=\"_blank\" rel=\"noopener\"> <img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: block !important; border: none; height: auto; float: none; max-width: 32px !important;\" title=\"X\" src=\"https://i.ibb.co/5KYnXP0/image-5.png\" alt=\"X\" width=\"32\"> </a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Footer Text -->\r\n<table id=\"u_content_text_3\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 10px 100px 30px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div class=\"v-text-align\" style=\"font-size: 14px; color: #ffffff; line-height: 170%; text-align: center; word-wrap: break-word;\">\r\n<p style=\"font-size: 14px; line-height: 170%;\">PRIVACY POLICY | TERMS OF SERVICE | SUPPORT</p>\r\n<p style=\"font-size: 14px; line-height: 170%;\"> </p>\r\n<p style=\"font-size: 14px; line-height: 170%;\">If you have any questions about your account security, please contact {site_name} support team immediately.</p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>', 'user', '{user_name} {user_email} {new_password} {site_name} {site_url}'),
('forget_password', 'Action required', '<table id=\"u_body\" style=\"border-collapse: collapse; table-layout: fixed; border-spacing: 0; mso-table-lspace: 0pt; mso-table-rspace: 0pt; vertical-align: top; min-width: 320px; margin: 0 auto; background-color: #ecf0f1; width: 100%;\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"vertical-align: top;\">\r\n<td>\r\n<div class=\"u-row-container\" style=\"padding: 0px; background-color: transparent;\">\r\n<div class=\"u-row\" style=\"margin: 0 auto; min-width: 320px; max-width: 600px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: transparent;\">\r\n<div style=\"border-collapse: collapse; display: table; width: 100%; height: 100%; background-color: transparent;\">\r\n<div id=\"u_column_2\" class=\"u-col u-col-100\" style=\"max-width: 320px; min-width: 600px; display: table-cell; vertical-align: top;\">\r\n<div style=\"background-color: #ffffff; height: 100%; width: 100% !important; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px;\">\r\n<div class=\"v-col-border\" style=\"box-sizing: border-box; height: 100%; padding: 0px; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px; border: 15px solid #2196F3;\"><!-- Logo Section -->\r\n<table id=\"u_content_heading_1\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 20px 0px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<h1 class=\"v-text-align\" style=\"margin: 0px; color: #000000; line-height: 140%; text-align: center; word-wrap: break-word; font-size: 22px; font-weight: 400;\">{site_name}</h1>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Main Content -->\r\n<table id=\"u_content_text_2\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 20px 40px 10px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div class=\"v-text-align\" style=\"font-size: 14px; line-height: 140%; text-align: left; word-wrap: break-word;\">\r\n<p style=\"line-height: 140%;\">Hi {admin_name},</p>\r\n<br>\r\n<p style=\"line-height: 140%;\">You have requested a password reset for your administrator account.</p>\r\n<br>\r\n<div style=\"background: #E3F2FD; padding: 20px; border-left: 4px solid #2196F3; border-radius: 5px;\">\r\n<p style=\"line-height: 170%; margin: 0;\"><strong>Your new password:</strong><br>{new_password}</p>\r\n</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Additional Info -->\r\n<table id=\"u_content_text_1\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 20px 40px 30px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div class=\"v-text-align\" style=\"font-size: 14px; line-height: 140%; text-align: left; word-wrap: break-word;\">\r\n<p style=\"line-height: 140%;\">For security reasons, please change this password immediately after logging in.</p>\r\n<br>\r\n<p style=\"line-height: 140%;\">Regards,<br>{site_name}</p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Divider Image -->\r\n<table style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 0px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-text-align\" style=\"padding-right: 0px; padding-left: 0px;\" align=\"center\"><img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: inline-block !important; border: none; height: auto; float: none; width: 90%; max-width: 540px;\" title=\"Divider\" src=\"https://i.ibb.co/GFy4JM6/image-1.png\" alt=\"Divider\" width=\"540\" align=\"center\" border=\"0\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<!-- Footer Section -->\r\n<div class=\"u-row-container\" style=\"padding: 0px; background-color: transparent;\">\r\n<div class=\"u-row\" style=\"margin: 0 auto; min-width: 320px; max-width: 600px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: transparent;\">\r\n<div style=\"border-collapse: collapse; display: table; width: 100%; height: 100%; background-color: transparent;\">\r\n<div class=\"u-col u-col-100\" style=\"max-width: 320px; min-width: 600px; display: table-cell; vertical-align: top;\">\r\n<div style=\"height: 100%; width: 100% !important;\">\r\n<div style=\"box-sizing: border-box; height: 100%; padding: 20px 0px; background-color: #2196f3; text-align: center;\">\r\n<p style=\"color: white; font-family: \'Raleway\',sans-serif; font-size: 12px; margin: 0;\">This is an automated email - please do not reply to this message.</p>\r\n<p style=\"color: white; font-family: \'Raleway\',sans-serif; font-size: 12px; margin: 10px 0 0;\">If you did not request this password reset, please secure your account immediately.</p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>', 'admin', '{admin_name}, {new_password}, {site_name}, {site_url}'),
('new_ticket', 'Ticket Created', '<table id=\"u_body\" style=\"border-collapse: collapse; table-layout: fixed; border-spacing: 0; mso-table-lspace: 0pt; mso-table-rspace: 0pt; vertical-align: top; min-width: 320px; margin: 0 auto; background-color: #ecf0f1; width: 100%;\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"vertical-align: top;\">\r\n<td>\r\n<div class=\"u-row-container\" style=\"padding: 0px; background-color: transparent;\">\r\n<div class=\"u-row\" style=\"margin: 0 auto; min-width: 320px; max-width: 600px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: transparent;\">\r\n<div style=\"border-collapse: collapse; display: table; width: 100%; height: 100%; background-color: transparent;\">\r\n<div id=\"u_column_2\" class=\"u-col u-col-100\" style=\"max-width: 320px; min-width: 600px; display: table-cell; vertical-align: top;\">\r\n<div style=\"background-color: #ffffff; height: 100%; width: 100% !important; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px;\">\r\n<div class=\"v-col-border\" style=\"box-sizing: border-box; height: 100%; padding: 0px; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px; border: 15px solid #FF9800;\"><!-- Logo Section -->\r\n<table id=\"u_content_heading_1\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 20px 0px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<h1 class=\"v-text-align\" style=\"margin: 0px; color: #000000; line-height: 140%; text-align: center; word-wrap: break-word; font-size: 22px; font-weight: 400;\">{site_name}</h1>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Main Content -->\r\n<table id=\"u_content_text_2\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 20px 40px 10px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div class=\"v-text-align\" style=\"font-size: 14px; line-height: 140%; text-align: left; word-wrap: break-word;\">\r\n<p style=\"line-height: 140%;\">Hi {site_name},</p>\r\n<br>\r\n<div style=\"background: #FFF3E0; padding: 20px; border-left: 4px solid #FF9800; border-radius: 5px;\">\r\n<p style=\"line-height: 170%;\">A new support ticket has been created by <strong>{user_name}</strong></p>\r\n</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- View Ticket Button -->\r\n<table id=\"u_content_button_1\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 10px 10px 10px 40px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div class=\"v-text-align\" align=\"center\"><a class=\"v-button v-size-width\" style=\"box-sizing: border-box; display: inline-block; text-decoration: none; -webkit-text-size-adjust: none; text-align: center; color: #ffffff; background-color: #ff9800; border-radius: 4px; -webkit-border-radius: 4px; -moz-border-radius: 4px; width: 50%; max-width: 100%; overflow-wrap: break-word; word-break: break-word; word-wrap: break-word; mso-border-alt: none; font-size: 14px;\" href=\"{ticket_url}\" target=\"_blank\" rel=\"noopener\"> <span style=\"display: block; padding: 12px 20px; line-height: 120%;\"><strong>View Ticket</strong></span> </a></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Regards -->\r\n<table id=\"u_content_text_1\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 20px 40px 30px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div class=\"v-text-align\" style=\"font-size: 14px; line-height: 140%; text-align: left; word-wrap: break-word;\">\r\n<p style=\"line-height: 140%;\">Regards,<br>{site_name}</p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Divider Image -->\r\n<table style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 0px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-text-align\" style=\"padding-right: 0px; padding-left: 0px;\" align=\"center\"><img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: inline-block !important; border: none; height: auto; float: none; width: 90%; max-width: 540px;\" title=\"Divider\" src=\"https://i.ibb.co/GFy4JM6/image-1.png\" alt=\"Divider\" width=\"540\" align=\"center\" border=\"0\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<!-- Footer Section -->\r\n<div class=\"u-row-container\" style=\"padding: 0px; background-color: transparent;\">\r\n<div class=\"u-row\" style=\"margin: 0 auto; min-width: 320px; max-width: 600px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: transparent;\">\r\n<div style=\"border-collapse: collapse; display: table; width: 100%; height: 100%; background-color: transparent;\">\r\n<div class=\"u-col u-col-100\" style=\"max-width: 320px; min-width: 600px; display: table-cell; vertical-align: top;\">\r\n<div style=\"height: 100%; width: 100% !important;\">\r\n<div style=\"box-sizing: border-box; height: 100%; padding: 20px 0px; background-color: #ff9800; text-align: center;\">\r\n<p style=\"color: white; font-family: \'Raleway\',sans-serif; font-size: 12px; margin: 0;\">This is an automated email - please do not reply to this message.</p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>', 'admin', '{site_name}, {site_url}, {ticket_url}, {ticket_id}, {user_name}'),
('reply_ticket', 'Ticket Reply Received', '<table id=\"u_body\" style=\"border-collapse: collapse; table-layout: fixed; border-spacing: 0; mso-table-lspace: 0pt; mso-table-rspace: 0pt; vertical-align: top; min-width: 320px; margin: 0 auto; background-color: #ecf0f1; width: 100%;\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"vertical-align: top;\">\r\n<td>\r\n<div class=\"u-row-container\" style=\"padding: 0px; background-color: transparent;\">\r\n<div class=\"u-row\" style=\"margin: 0 auto; min-width: 320px; max-width: 600px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: transparent;\">\r\n<div style=\"border-collapse: collapse; display: table; width: 100%; height: 100%; background-color: transparent;\">\r\n<div id=\"u_column_2\" class=\"u-col u-col-100\" style=\"max-width: 320px; min-width: 600px; display: table-cell; vertical-align: top;\">\r\n<div style=\"background-color: #ffffff; height: 100%; width: 100% !important; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px;\">\r\n<div class=\"v-col-border\" style=\"box-sizing: border-box; height: 100%; padding: 0px; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px; border: 15px solid #9C27B0;\"><!-- Logo Section -->\r\n<table id=\"u_content_heading_1\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 20px 0px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<h1 class=\"v-text-align\" style=\"margin: 0px; color: #000000; line-height: 140%; text-align: center; word-wrap: break-word; font-size: 22px; font-weight: 400;\">{site_name}</h1>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Main Content -->\r\n<table id=\"u_content_text_2\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 20px 40px 10px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div class=\"v-text-align\" style=\"font-size: 14px; line-height: 140%; text-align: left; word-wrap: break-word;\">\r\n<p style=\"line-height: 140%;\">Hi {user_name},</p>\r\n<br>\r\n<div style=\"background: #F3E5F5; padding: 20px; border-left: 4px solid #9C27B0; border-radius: 5px;\">\r\n<p style=\"line-height: 170%;\">You have received a new reply on your support ticket.</p>\r\n<p style=\"line-height: 170%; margin-top: 10px;\"><strong>Ticket ID:</strong> {ticket_id}</p>\r\n</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- View Ticket Button -->\r\n<table id=\"u_content_button_1\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 10px 10px 10px 40px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div class=\"v-text-align\" align=\"center\"><a class=\"v-button v-size-width\" style=\"box-sizing: border-box; display: inline-block; text-decoration: none; -webkit-text-size-adjust: none; text-align: center; color: #ffffff; background-color: #9c27b0; border-radius: 4px; -webkit-border-radius: 4px; -moz-border-radius: 4px; width: 50%; max-width: 100%; overflow-wrap: break-word; word-break: break-word; word-wrap: break-word; mso-border-alt: none; font-size: 14px;\" href=\"{ticket_url}\" target=\"_blank\" rel=\"noopener\"> <span style=\"display: block; padding: 12px 20px; line-height: 120%;\"><strong>View Ticket</strong></span> </a></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Additional Info -->\r\n<table id=\"u_content_text_1\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 20px 40px 30px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div class=\"v-text-align\" style=\"font-size: 14px; line-height: 140%; text-align: left; word-wrap: break-word;\">\r\n<p style=\"line-height: 140%;\">Quick reminders:</p>\r\n<ul style=\"margin-left: 20px;\">\r\n<li>Keep your ticket reference for future correspondence</li>\r\n<li>Our support team aims to respond within 24 hours</li>\r\n<li>You can add more information to your ticket at any time</li>\r\n</ul>\r\n<br>\r\n<p style=\"line-height: 140%;\">Thank you for your patience.</p>\r\n<br>\r\n<p style=\"line-height: 140%;\">Regards,<br>{site_name}</p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Divider Image -->\r\n<table style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 0px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-text-align\" style=\"padding-right: 0px; padding-left: 0px;\" align=\"center\"><img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: inline-block !important; border: none; height: auto; float: none; width: 90%; max-width: 540px;\" title=\"Divider\" src=\"https://i.ibb.co/GFy4JM6/image-1.png\" alt=\"Divider\" width=\"540\" align=\"center\" border=\"0\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<!-- Footer Section -->\r\n<div class=\"u-row-container\" style=\"padding: 0px; background-color: transparent;\">\r\n<div class=\"u-row\" style=\"margin: 0 auto; min-width: 320px; max-width: 600px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: transparent;\">\r\n<div style=\"border-collapse: collapse; display: table; width: 100%; height: 100%; background-color: transparent;\">\r\n<div class=\"u-col u-col-100\" style=\"max-width: 320px; min-width: 600px; display: table-cell; vertical-align: top;\">\r\n<div style=\"background-color: #8d95ff; height: 100%; width: 100% !important; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px;\">\r\n<div style=\"box-sizing: border-box; height: 100%; padding: 0px;\"><!-- Social Media Icons --><!-- Social Media Icons -->\r\n<table id=\"u_content_social_1\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 50px 10px 10px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div style=\"direction: ltr;\" align=\"center\">\r\n<div style=\"display: table; max-width: 167px;\"><!-- Social Icons Container -->\r\n<table style=\"width: 32px !important; height: 32px !important; display: inline-block; border-collapse: collapse; table-layout: fixed; border-spacing: 0; vertical-align: top; margin-right: 10px;\" border=\"0\" width=\"32\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\">\r\n<tbody>\r\n<tr style=\"vertical-align: top;\">\r\n<td style=\"word-break: break-word; border-collapse: collapse !important; vertical-align: top;\" align=\"left\" valign=\"middle\"><a title=\"Facebook\" href=\"https://facebook.com/\" target=\"_blank\" rel=\"noopener\"> <img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: block !important; border: none; height: auto; float: none; max-width: 32px !important;\" title=\"Facebook\" src=\"https://i.ibb.co/cD3kS6F/image-2.png\" alt=\"Facebook\" width=\"32\"> </a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table style=\"width: 32px !important; height: 32px !important; display: inline-block; border-collapse: collapse; table-layout: fixed; border-spacing: 0; vertical-align: top; margin-right: 10px;\" border=\"0\" width=\"32\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\">\r\n<tbody>\r\n<tr style=\"vertical-align: top;\">\r\n<td style=\"word-break: break-word; border-collapse: collapse !important; vertical-align: top;\" align=\"left\" valign=\"middle\"><a title=\"LinkedIn\" href=\"https://linkedin.com/\" target=\"_blank\" rel=\"noopener\"> <img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: block !important; border: none; height: auto; float: none; max-width: 32px !important;\" title=\"LinkedIn\" src=\"https://i.ibb.co/xhqvPc8/image-3.png\" alt=\"LinkedIn\" width=\"32\"> </a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table style=\"width: 32px !important; height: 32px !important; display: inline-block; border-collapse: collapse; table-layout: fixed; border-spacing: 0; vertical-align: top; margin-right: 10px;\" border=\"0\" width=\"32\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\">\r\n<tbody>\r\n<tr style=\"vertical-align: top;\">\r\n<td style=\"word-break: break-word; border-collapse: collapse !important; vertical-align: top;\" align=\"left\" valign=\"middle\"><a title=\"Instagram\" href=\"https://instagram.com/\" target=\"_blank\" rel=\"noopener\"> <img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: block !important; border: none; height: auto; float: none; max-width: 32px !important;\" title=\"Instagram\" src=\"https://i.ibb.co/q0374vh/image-4.png\" alt=\"Instagram\" width=\"32\"> </a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table style=\"width: 32px !important; height: 32px !important; display: inline-block; border-collapse: collapse; table-layout: fixed; border-spacing: 0; vertical-align: top; margin-right: 0px;\" border=\"0\" width=\"32\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\">\r\n<tbody>\r\n<tr style=\"vertical-align: top;\">\r\n<td style=\"word-break: break-word; border-collapse: collapse !important; vertical-align: top;\" align=\"left\" valign=\"middle\"><a title=\"X\" href=\"https://twitter.com/\" target=\"_blank\" rel=\"noopener\"> <img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: block !important; border: none; height: auto; float: none; max-width: 32px !important;\" title=\"X\" src=\"https://i.ibb.co/5KYnXP0/image-5.png\" alt=\"X\" width=\"32\"> </a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Footer Text -->\r\n<table id=\"u_content_text_3\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 10px 100px 30px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div class=\"v-text-align\" style=\"font-size: 14px; color: #ffffff; line-height: 170%; text-align: center; word-wrap: break-word;\">\r\n<p style=\"font-size: 14px; line-height: 170%;\">PRIVACY POLICY | TERMS OF SERVICE | SUPPORT</p>\r\n<p style=\"font-size: 14px; line-height: 170%;\"> </p>\r\n<p style=\"font-size: 14px; line-height: 170%;\">If you have any questions about your account security, please contact {site_name} support team immediately.</p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>', 'user', '{site_name}, {site_url}, {ticket_url}, {ticket_id}, {user_name}');
INSERT INTO `is_email` (`email_id`, `email_subject`, `email_content`, `email_for`, `email_doc`) VALUES
('reply_ticket', 'Ticket Reply Received', '<table id=\"u_body\" style=\"border-collapse: collapse; table-layout: fixed; border-spacing: 0; mso-table-lspace: 0pt; mso-table-rspace: 0pt; vertical-align: top; min-width: 320px; margin: 0 auto; background-color: #ecf0f1; width: 100%;\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"vertical-align: top;\">\r\n<td>\r\n<div class=\"u-row-container\" style=\"padding: 0px; background-color: transparent;\">\r\n<div class=\"u-row\" style=\"margin: 0 auto; min-width: 320px; max-width: 600px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: transparent;\">\r\n<div style=\"border-collapse: collapse; display: table; width: 100%; height: 100%; background-color: transparent;\">\r\n<div id=\"u_column_2\" class=\"u-col u-col-100\" style=\"max-width: 320px; min-width: 600px; display: table-cell; vertical-align: top;\">\r\n<div style=\"background-color: #ffffff; height: 100%; width: 100% !important; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px;\">\r\n<div class=\"v-col-border\" style=\"box-sizing: border-box; height: 100%; padding: 0px; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px; border: 15px solid #9C27B0;\"><!-- Logo Section -->\r\n<table id=\"u_content_heading_1\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 20px 0px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<h1 class=\"v-text-align\" style=\"margin: 0px; color: #000000; line-height: 140%; text-align: center; word-wrap: break-word; font-size: 22px; font-weight: 400;\">{site_name}</h1>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Main Content -->\r\n<table id=\"u_content_text_2\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 20px 40px 10px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div class=\"v-text-align\" style=\"font-size: 14px; line-height: 140%; text-align: left; word-wrap: break-word;\">\r\n<p style=\"line-height: 140%;\">Hi {admin_name},</p>\r\n<br>\r\n<div style=\"background: #F3E5F5; padding: 20px; border-left: 4px solid #9C27B0; border-radius: 5px;\">\r\n<p style=\"line-height: 170%;\">A new reply has been received on ticket.</p>\r\n<p style=\"line-height: 170%; margin-top: 10px;\"><strong>Ticket ID:</strong> {ticket_id}</p>\r\n</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- View Ticket Button -->\r\n<table id=\"u_content_button_1\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 10px 10px 10px 40px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div class=\"v-text-align\" align=\"center\"><a class=\"v-button v-size-width\" style=\"box-sizing: border-box; display: inline-block; text-decoration: none; -webkit-text-size-adjust: none; text-align: center; color: #ffffff; background-color: #9c27b0; border-radius: 4px; -webkit-border-radius: 4px; -moz-border-radius: 4px; width: 50%; max-width: 100%; overflow-wrap: break-word; word-break: break-word; word-wrap: break-word; mso-border-alt: none; font-size: 14px;\" href=\"{ticket_url}\" target=\"_blank\" rel=\"noopener\"> <span style=\"display: block; padding: 12px 20px; line-height: 120%;\"><strong>View Ticket</strong></span> </a></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Additional Info -->\r\n<table id=\"u_content_text_1\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 20px 40px 30px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div class=\"v-text-align\" style=\"font-size: 14px; line-height: 140%; text-align: left; word-wrap: break-word;\">\r\n<p style=\"line-height: 140%;\">Please review and respond to the ticket as soon as possible.</p>\r\n<br>\r\n<p style=\"line-height: 140%;\">Regards,<br>{site_name}</p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Divider Image -->\r\n<table style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 0px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-text-align\" style=\"padding-right: 0px; padding-left: 0px;\" align=\"center\"><img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: inline-block !important; border: none; height: auto; float: none; width: 90%; max-width: 540px;\" title=\"Divider\" src=\"https://i.ibb.co/GFy4JM6/image-1.png\" alt=\"Divider\" width=\"540\" align=\"center\" border=\"0\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<!-- Footer Section -->\r\n<div class=\"u-row-container\" style=\"padding: 0px; background-color: transparent;\">\r\n<div class=\"u-row\" style=\"margin: 0 auto; min-width: 320px; max-width: 600px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: transparent;\">\r\n<div style=\"border-collapse: collapse; display: table; width: 100%; height: 100%; background-color: transparent;\">\r\n<div class=\"u-col u-col-100\" style=\"max-width: 320px; min-width: 600px; display: table-cell; vertical-align: top;\">\r\n<div style=\"height: 100%; width: 100% !important;\">\r\n<div style=\"box-sizing: border-box; height: 100%; padding: 20px 0px; background-color: #9c27b0; text-align: center;\">\r\n<p style=\"color: white; font-family: \'Raleway\',sans-serif; font-size: 12px; margin: 0;\">This is an automated email - please do not reply to this message.</p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>', 'admin', '{site_name}, {site_url}, {ticket_url}, {ticket_id}, {admin_name}'),
('account_created', 'Account Created', '<table id=\"u_body\" style=\"border-collapse: collapse; table-layout: fixed; border-spacing: 0; mso-table-lspace: 0pt; mso-table-rspace: 0pt; vertical-align: top; min-width: 320px; margin: 0 auto; background-color: #ecf0f1; width: 100%;\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"vertical-align: top;\">\r\n<td style=\"word-break: break-word; border-collapse: collapse !important; vertical-align: top;\">\r\n<div class=\"u-row-container\" style=\"padding: 0px; background-color: transparent;\">\r\n<div class=\"u-row\" style=\"margin: 0 auto; min-width: 320px; max-width: 600px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: transparent;\">\r\n<div style=\"border-collapse: collapse; display: table; width: 100%; height: 100%; background-color: transparent;\">\r\n<div id=\"u_column_2\" class=\"u-col u-col-100\" style=\"max-width: 320px; min-width: 600px; display: table-cell; vertical-align: top;\">\r\n<div style=\"background-color: #ffffff; height: 100%; width: 100% !important; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px;\">\r\n<div class=\"v-col-border\" style=\"box-sizing: border-box; height: 100%; padding: 0px; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px; border: 15px solid #8d95ff;\"><!-- Logo Section -->\r\n<table id=\"u_content_heading_1\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 20px 0px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<h1 class=\"v-text-align\" style=\"margin: 0px; color: #000000; line-height: 140%; text-align: center; word-wrap: break-word; font-size: 22px; font-weight: 400;\">{site_name}</h1>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Divider -->\r\n<table style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 10px 0px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<table style=\"border-collapse: collapse; table-layout: fixed; border-spacing: 0; mso-table-lspace: 0pt; mso-table-rspace: 0pt; vertical-align: top; border-top: 1px solid #BBBBBB; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr style=\"vertical-align: top;\">\r\n<td style=\"word-break: break-word; border-collapse: collapse !important; vertical-align: top; font-size: 0px; line-height: 0px; mso-line-height-rule: exactly; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;\"> </td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Main Content -->\r\n<table id=\"u_content_text_2\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 20px 40px 10px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div class=\"v-text-align\" style=\"font-size: 14px; line-height: 140%; text-align: left; word-wrap: break-word;\">\r\n<p style=\"line-height: 140%;\">Dear {account_username},</p>\r\n<br>\r\n<p style=\"line-height: 140%;\">Thank you for choosing our hosting services. Below are your hosting account details:</p>\r\n<br>\r\n<div style=\"background: #f5f5f5; padding: 20px; border-radius: 5px;\">\r\n<p style=\"line-height: 170%;\"><strong>Domain:</strong> {account_domain}</p>\r\n<p style=\"line-height: 170%;\"><strong>Username:</strong> {account_username}</p>\r\n<p style=\"line-height: 170%;\"><strong>Password:</strong> {account_password}</p>\r\n</div>\r\n<br>\r\n<p style=\"line-height: 140%; color: #666666;\"><em>For FTP and MySQL credentials, please login to your control panel for security reasons.</em></p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Login Button -->\r\n<table id=\"u_content_button_1\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 10px 10px 10px 40px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div class=\"v-text-align\" align=\"left\"><a class=\"v-button v-size-width\" style=\"box-sizing: border-box; display: inline-block; text-decoration: none; -webkit-text-size-adjust: none; text-align: center; color: #000000; background-color: #ffc25e; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px; width: 42%; max-width: 100%; overflow-wrap: break-word; word-break: break-word; word-wrap: break-word; mso-border-alt: none; font-size: 14px;\" href=\"{site_url}\" target=\"_blank\" rel=\"noopener\"> <span style=\"display: block; padding: 10px 20px; line-height: 120%;\">Access Control Panel</span> </a></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Additional Info -->\r\n<table id=\"u_content_text_1\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 20px 40px 30px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div class=\"v-text-align\" style=\"font-size: 14px; line-height: 140%; text-align: left; word-wrap: break-word;\">\r\n<p style=\"line-height: 140%;\">Important Information:</p>\r\n<ul style=\"margin-left: 20px;\">\r\n<li>Your control panel can be accessed at: {site_url}</li>\r\n<li>FTP and MySQL details are available in your control panel</li>\r\n<li>Please change your password upon first login</li>\r\n<li>For security, keep these credentials confidential</li>\r\n</ul>\r\n<br>\r\n<p style=\"line-height: 140%;\">If you need assistance, our support team is available 24/7.</p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Divider Image -->\r\n<table style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 0px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-text-align\" style=\"padding-right: 0px; padding-left: 0px;\" align=\"center\"><img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: inline-block !important; border: none; height: auto; float: none; width: 90%; max-width: 540px;\" title=\"Divider\" src=\"https://i.ibb.co/GFy4JM6/image-1.png\" alt=\"Divider\" width=\"540\" align=\"center\" border=\"0\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<!-- Footer Section -->\r\n<div class=\"u-row-container\" style=\"padding: 0px; background-color: transparent;\">\r\n<div class=\"u-row\" style=\"margin: 0 auto; min-width: 320px; max-width: 600px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: transparent;\">\r\n<div style=\"border-collapse: collapse; display: table; width: 100%; height: 100%; background-color: transparent;\">\r\n<div class=\"u-col u-col-100\" style=\"max-width: 320px; min-width: 600px; display: table-cell; vertical-align: top;\">\r\n<div style=\"background-color: #8d95ff; height: 100%; width: 100% !important; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px;\">\r\n<div style=\"box-sizing: border-box; height: 100%; padding: 0px;\"><!-- Social Media Icons --><!-- Social Media Icons -->\r\n<table id=\"u_content_social_1\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 50px 10px 10px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div style=\"direction: ltr;\" align=\"center\">\r\n<div style=\"display: table; max-width: 167px;\"><!-- Social Icons Container -->\r\n<table style=\"width: 32px !important; height: 32px !important; display: inline-block; border-collapse: collapse; table-layout: fixed; border-spacing: 0; vertical-align: top; margin-right: 10px;\" border=\"0\" width=\"32\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\">\r\n<tbody>\r\n<tr style=\"vertical-align: top;\">\r\n<td style=\"word-break: break-word; border-collapse: collapse !important; vertical-align: top;\" align=\"left\" valign=\"middle\"><a title=\"Facebook\" href=\"https://facebook.com/\" target=\"_blank\" rel=\"noopener\"> <img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: block !important; border: none; height: auto; float: none; max-width: 32px !important;\" title=\"Facebook\" src=\"https://i.ibb.co/cD3kS6F/image-2.png\" alt=\"Facebook\" width=\"32\"> </a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table style=\"width: 32px !important; height: 32px !important; display: inline-block; border-collapse: collapse; table-layout: fixed; border-spacing: 0; vertical-align: top; margin-right: 10px;\" border=\"0\" width=\"32\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\">\r\n<tbody>\r\n<tr style=\"vertical-align: top;\">\r\n<td style=\"word-break: break-word; border-collapse: collapse !important; vertical-align: top;\" align=\"left\" valign=\"middle\"><a title=\"LinkedIn\" href=\"https://linkedin.com/\" target=\"_blank\" rel=\"noopener\"> <img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: block !important; border: none; height: auto; float: none; max-width: 32px !important;\" title=\"LinkedIn\" src=\"https://i.ibb.co/xhqvPc8/image-3.png\" alt=\"LinkedIn\" width=\"32\"> </a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table style=\"width: 32px !important; height: 32px !important; display: inline-block; border-collapse: collapse; table-layout: fixed; border-spacing: 0; vertical-align: top; margin-right: 10px;\" border=\"0\" width=\"32\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\">\r\n<tbody>\r\n<tr style=\"vertical-align: top;\">\r\n<td style=\"word-break: break-word; border-collapse: collapse !important; vertical-align: top;\" align=\"left\" valign=\"middle\"><a title=\"Instagram\" href=\"https://instagram.com/\" target=\"_blank\" rel=\"noopener\"> <img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: block !important; border: none; height: auto; float: none; max-width: 32px !important;\" title=\"Instagram\" src=\"https://i.ibb.co/q0374vh/image-4.png\" alt=\"Instagram\" width=\"32\"> </a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table style=\"width: 32px !important; height: 32px !important; display: inline-block; border-collapse: collapse; table-layout: fixed; border-spacing: 0; vertical-align: top; margin-right: 0px;\" border=\"0\" width=\"32\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\">\r\n<tbody>\r\n<tr style=\"vertical-align: top;\">\r\n<td style=\"word-break: break-word; border-collapse: collapse !important; vertical-align: top;\" align=\"left\" valign=\"middle\"><a title=\"X\" href=\"https://twitter.com/\" target=\"_blank\" rel=\"noopener\"> <img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: block !important; border: none; height: auto; float: none; max-width: 32px !important;\" title=\"X\" src=\"https://i.ibb.co/5KYnXP0/image-5.png\" alt=\"X\" width=\"32\"> </a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Footer Text -->\r\n<table id=\"u_content_text_3\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 10px 100px 30px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div class=\"v-text-align\" style=\"font-size: 14px; color: #ffffff; line-height: 170%; text-align: center; word-wrap: break-word;\">\r\n<p style=\"font-size: 14px; line-height: 170%;\">PRIVACY POLICY | TERMS OF SERVICE | SUPPORT</p>\r\n<p style=\"font-size: 14px; line-height: 170%;\"> </p>\r\n<p style=\"font-size: 14px; line-height: 170%;\">If you have any questions about your account security, please contact {site_name} support team immediately.</p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>', 'user', '{site_name}, {site_url}, {account_username}, {account_password}, {account_domain}, {main_domain}, {cpanel_domain}, {sql_server}, {nameserver_1}, {nameserver_2}, {account_label}, {user_name}, {user_email}'),
('account_suspended', 'Account Suspended', '<table id=\"u_body\" style=\"border-collapse: collapse; table-layout: fixed; border-spacing: 0; mso-table-lspace: 0pt; mso-table-rspace: 0pt; vertical-align: top; min-width: 320px; margin: 0 auto; background-color: #ecf0f1; width: 100%;\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"vertical-align: top;\">\r\n<td>\r\n<div class=\"u-row-container\" style=\"padding: 0px; background-color: transparent;\">\r\n<div class=\"u-row\" style=\"margin: 0 auto; min-width: 320px; max-width: 600px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: transparent;\">\r\n<div style=\"border-collapse: collapse; display: table; width: 100%; height: 100%; background-color: transparent;\">\r\n<div id=\"u_column_2\" class=\"u-col u-col-100\" style=\"max-width: 320px; min-width: 600px; display: table-cell; vertical-align: top;\">\r\n<div style=\"background-color: #ffffff; height: 100%; width: 100% !important; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px;\">\r\n<div class=\"v-col-border\" style=\"box-sizing: border-box; height: 100%; padding: 0px; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px; border: 15px solid #ff8d8d;\"><!-- Logo Section -->\r\n<table id=\"u_content_heading_1\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 20px 0px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<h1 class=\"v-text-align\" style=\"margin: 0px; color: #000000; line-height: 140%; text-align: center; word-wrap: break-word; font-size: 22px; font-weight: 400;\">{site_name}</h1>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Divider -->\r\n<table style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 10px 0px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<table style=\"border-collapse: collapse; table-layout: fixed; border-spacing: 0; mso-table-lspace: 0pt; mso-table-rspace: 0pt; vertical-align: top; border-top: 1px solid #BBBBBB; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr style=\"vertical-align: top;\">\r\n<td style=\"word-break: break-word; border-collapse: collapse !important; vertical-align: top; font-size: 0px; line-height: 0px; mso-line-height-rule: exactly; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;\"> </td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Main Content -->\r\n<table id=\"u_content_text_2\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 20px 40px 10px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div class=\"v-text-align\" style=\"font-size: 14px; line-height: 140%; text-align: left; word-wrap: break-word;\">\r\n<p style=\"line-height: 140%;\">Important Notice</p>\r\n<br>\r\n<p style=\"line-height: 140%;\">This is to inform you that your hosting account <strong>{account_username}</strong> has been suspended.</p>\r\n<br>\r\n<div style=\"background: #fff4f4; padding: 20px; border-left: 4px solid #ff8d8d; border-radius: 5px;\">\r\n<p style=\"line-height: 170%; color: #ff4747;\"><strong>Reason for Suspension:</strong><br>{some_reason}</p>\r\n</div>\r\n<br>\r\n<p style=\"line-height: 140%;\">As a result of this suspension:</p>\r\n<ul style=\"margin-left: 20px;\">\r\n<li>Your website is temporarily unavailable</li>\r\n<li>Email services may be affected</li>\r\n<li>Control panel access is restricted</li>\r\n<li>FTP access is disabled</li>\r\n</ul>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Action Button -->\r\n<table id=\"u_content_button_1\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 10px 10px 10px 40px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div class=\"v-text-align\" align=\"left\"><a class=\"v-button v-size-width\" style=\"box-sizing: border-box; display: inline-block; text-decoration: none; -webkit-text-size-adjust: none; text-align: center; color: #000000; background-color: #ffc25e; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px; width: 42%; max-width: 100%; overflow-wrap: break-word; word-break: break-word; word-wrap: break-word; mso-border-alt: none; font-size: 14px;\" href=\"{site_url}\" target=\"_blank\" rel=\"noopener\"> <span style=\"display: block; padding: 10px 20px; line-height: 120%;\">Creat Ticket</span> </a></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Additional Info -->\r\n<table id=\"u_content_text_1\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 20px 40px 30px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div class=\"v-text-align\" style=\"font-size: 14px; line-height: 140%; text-align: left; word-wrap: break-word;\">\r\n<p style=\"line-height: 140%;\">To resolve this suspension:</p>\r\n<ul style=\"margin-left: 20px;\">\r\n<li>Please review the reason for suspension carefully</li>\r\n<li>Contact our support team for assistance</li>\r\n<li>Provide any requested information promptly</li>\r\n</ul>\r\n<br>\r\n<p style=\"line-height: 140%;\">Our support team is available 24/7 to help resolve this issue.</p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Divider Image -->\r\n<table style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 0px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-text-align\" style=\"padding-right: 0px; padding-left: 0px;\" align=\"center\"><img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: inline-block !important; border: none; height: auto; float: none; width: 90%; max-width: 540px;\" title=\"Divider\" src=\"https://i.ibb.co/GFy4JM6/image-1.png\" alt=\"Divider\" width=\"540\" align=\"center\" border=\"0\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<!-- Footer Section -->\r\n<div class=\"u-row-container\" style=\"padding: 0px; background-color: transparent;\">\r\n<div class=\"u-row\" style=\"margin: 0 auto; min-width: 320px; max-width: 600px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: transparent;\">\r\n<div style=\"border-collapse: collapse; display: table; width: 100%; height: 100%; background-color: transparent;\">\r\n<div class=\"u-col u-col-100\" style=\"max-width: 320px; min-width: 600px; display: table-cell; vertical-align: top;\">\r\n<div style=\"background-color: #8d95ff; height: 100%; width: 100% !important; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px;\">\r\n<div style=\"box-sizing: border-box; height: 100%; padding: 0px;\"><!-- Social Media Icons --><!-- Social Media Icons -->\r\n<table id=\"u_content_social_1\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 50px 10px 10px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div style=\"direction: ltr;\" align=\"center\">\r\n<div style=\"display: table; max-width: 167px;\"><!-- Social Icons Container -->\r\n<table style=\"width: 32px !important; height: 32px !important; display: inline-block; border-collapse: collapse; table-layout: fixed; border-spacing: 0; vertical-align: top; margin-right: 10px;\" border=\"0\" width=\"32\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\">\r\n<tbody>\r\n<tr style=\"vertical-align: top;\">\r\n<td style=\"word-break: break-word; border-collapse: collapse !important; vertical-align: top;\" align=\"left\" valign=\"middle\"><a title=\"Facebook\" href=\"https://facebook.com/\" target=\"_blank\" rel=\"noopener\"> <img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: block !important; border: none; height: auto; float: none; max-width: 32px !important;\" title=\"Facebook\" src=\"https://i.ibb.co/cD3kS6F/image-2.png\" alt=\"Facebook\" width=\"32\"> </a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table style=\"width: 32px !important; height: 32px !important; display: inline-block; border-collapse: collapse; table-layout: fixed; border-spacing: 0; vertical-align: top; margin-right: 10px;\" border=\"0\" width=\"32\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\">\r\n<tbody>\r\n<tr style=\"vertical-align: top;\">\r\n<td style=\"word-break: break-word; border-collapse: collapse !important; vertical-align: top;\" align=\"left\" valign=\"middle\"><a title=\"LinkedIn\" href=\"https://linkedin.com/\" target=\"_blank\" rel=\"noopener\"> <img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: block !important; border: none; height: auto; float: none; max-width: 32px !important;\" title=\"LinkedIn\" src=\"https://i.ibb.co/xhqvPc8/image-3.png\" alt=\"LinkedIn\" width=\"32\"> </a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table style=\"width: 32px !important; height: 32px !important; display: inline-block; border-collapse: collapse; table-layout: fixed; border-spacing: 0; vertical-align: top; margin-right: 10px;\" border=\"0\" width=\"32\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\">\r\n<tbody>\r\n<tr style=\"vertical-align: top;\">\r\n<td style=\"word-break: break-word; border-collapse: collapse !important; vertical-align: top;\" align=\"left\" valign=\"middle\"><a title=\"Instagram\" href=\"https://instagram.com/\" target=\"_blank\" rel=\"noopener\"> <img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: block !important; border: none; height: auto; float: none; max-width: 32px !important;\" title=\"Instagram\" src=\"https://i.ibb.co/q0374vh/image-4.png\" alt=\"Instagram\" width=\"32\"> </a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table style=\"width: 32px !important; height: 32px !important; display: inline-block; border-collapse: collapse; table-layout: fixed; border-spacing: 0; vertical-align: top; margin-right: 0px;\" border=\"0\" width=\"32\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\">\r\n<tbody>\r\n<tr style=\"vertical-align: top;\">\r\n<td style=\"word-break: break-word; border-collapse: collapse !important; vertical-align: top;\" align=\"left\" valign=\"middle\"><a title=\"X\" href=\"https://twitter.com/\" target=\"_blank\" rel=\"noopener\"> <img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: block !important; border: none; height: auto; float: none; max-width: 32px !important;\" title=\"X\" src=\"https://i.ibb.co/5KYnXP0/image-5.png\" alt=\"X\" width=\"32\"> </a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Footer Text -->\r\n<table id=\"u_content_text_3\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 10px 100px 30px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div class=\"v-text-align\" style=\"font-size: 14px; color: #ffffff; line-height: 170%; text-align: center; word-wrap: break-word;\">\r\n<p style=\"font-size: 14px; line-height: 170%;\">PRIVACY POLICY | TERMS OF SERVICE | SUPPORT</p>\r\n<p style=\"font-size: 14px; line-height: 170%;\"> </p>\r\n<p style=\"font-size: 14px; line-height: 170%;\">If you have any questions about your account security, please contact {site_name} support team immediately.</p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>', 'user', '{site_name}, {site_url}, {account_username}, {user_name}, {user_email}, {some_reason}'),
('account_reactivated', 'Account Reactivated', '<table id=\"u_body\" style=\"border-collapse: collapse; table-layout: fixed; border-spacing: 0; mso-table-lspace: 0pt; mso-table-rspace: 0pt; vertical-align: top; min-width: 320px; margin: 0 auto; background-color: #ecf0f1; width: 100%;\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"vertical-align: top;\">\r\n<td>\r\n<div class=\"u-row-container\" style=\"padding: 0px; background-color: transparent;\">\r\n<div class=\"u-row\" style=\"margin: 0 auto; min-width: 320px; max-width: 600px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: transparent;\">\r\n<div style=\"border-collapse: collapse; display: table; width: 100%; height: 100%; background-color: transparent;\">\r\n<div id=\"u_column_2\" class=\"u-col u-col-100\" style=\"max-width: 320px; min-width: 600px; display: table-cell; vertical-align: top;\">\r\n<div style=\"background-color: #ffffff; height: 100%; width: 100% !important; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px;\">\r\n<div class=\"v-col-border\" style=\"box-sizing: border-box; height: 100%; padding: 0px; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px; border: 15px solid #4CAF50;\"><!-- Logo Section -->\r\n<table id=\"u_content_heading_1\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 20px 0px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<h1 class=\"v-text-align\" style=\"margin: 0px; color: #000000; line-height: 140%; text-align: center; word-wrap: break-word; font-size: 22px; font-weight: 400;\">{site_name}</h1>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Main Content -->\r\n<table id=\"u_content_text_2\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 20px 40px 10px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div class=\"v-text-align\" style=\"font-size: 14px; line-height: 140%; text-align: left; word-wrap: break-word;\">\r\n<p style=\"line-height: 140%;\">Hi {user_name},</p>\r\n<br>\r\n<div style=\"background: #E8F5E9; padding: 20px; border-left: 4px solid #4CAF50; border-radius: 5px;\">\r\n<p style=\"line-height: 170%;\">Great news! Your account <strong>{account_username}</strong> has been successfully reactivated.</p>\r\n</div>\r\n<br>\r\n<p style=\"line-height: 140%;\">Your hosting services have been restored and your website should be accessible now. All previous settings and data have been preserved.</p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Action Button -->\r\n<table id=\"u_content_button_1\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 10px 10px 10px 40px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div class=\"v-text-align\" align=\"left\"><a class=\"v-button v-size-width\" style=\"box-sizing: border-box; display: inline-block; text-decoration: none; -webkit-text-size-adjust: none; text-align: center; color: #ffffff; background-color: #4caf50; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px; width: 42%; max-width: 100%; overflow-wrap: break-word; word-break: break-word; word-wrap: break-word; mso-border-alt: none; font-size: 14px;\" href=\"{site_url}/client-area\" target=\"_blank\" rel=\"noopener\"> <span style=\"display: block; padding: 10px 20px; line-height: 120%;\">Access Client Area</span> </a></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Additional Info -->\r\n<table id=\"u_content_text_1\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 20px 40px 30px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div class=\"v-text-align\" style=\"font-size: 14px; line-height: 140%; text-align: left; word-wrap: break-word;\">\r\n<p style=\"line-height: 140%;\">You can now:</p>\r\n<ul style=\"margin-left: 20px;\">\r\n<li>Access your control panel</li>\r\n<li>Manage your website</li>\r\n<li>Use email services</li>\r\n<li>Access FTP</li>\r\n</ul>\r\n<br>\r\n<p style=\"line-height: 140%;\">If you have any questions or need assistance, our support team is here to help 24/7.</p>\r\n<br>\r\n<p style=\"line-height: 140%;\">Regards,<br>{site_name}</p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Divider Image -->\r\n<table style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 0px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-text-align\" style=\"padding-right: 0px; padding-left: 0px;\" align=\"center\"><img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: inline-block !important; border: none; height: auto; float: none; width: 90%; max-width: 540px;\" title=\"Divider\" src=\"https://i.ibb.co/GFy4JM6/image-1.png\" alt=\"Divider\" width=\"540\" align=\"center\" border=\"0\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<!-- Footer Section -->\r\n<div class=\"u-row-container\" style=\"padding: 0px; background-color: transparent;\">\r\n<div class=\"u-row\" style=\"margin: 0 auto; min-width: 320px; max-width: 600px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: transparent;\">\r\n<div style=\"border-collapse: collapse; display: table; width: 100%; height: 100%; background-color: transparent;\">\r\n<div class=\"u-col u-col-100\" style=\"max-width: 320px; min-width: 600px; display: table-cell; vertical-align: top;\">\r\n<div style=\"background-color: #8d95ff; height: 100%; width: 100% !important; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px;\">\r\n<div style=\"box-sizing: border-box; height: 100%; padding: 0px;\"><!-- Social Media Icons --><!-- Social Media Icons -->\r\n<table id=\"u_content_social_1\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 50px 10px 10px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div style=\"direction: ltr;\" align=\"center\">\r\n<div style=\"display: table; max-width: 167px;\"><!-- Social Icons Container -->\r\n<table style=\"width: 32px !important; height: 32px !important; display: inline-block; border-collapse: collapse; table-layout: fixed; border-spacing: 0; vertical-align: top; margin-right: 10px;\" border=\"0\" width=\"32\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\">\r\n<tbody>\r\n<tr style=\"vertical-align: top;\">\r\n<td style=\"word-break: break-word; border-collapse: collapse !important; vertical-align: top;\" align=\"left\" valign=\"middle\"><a title=\"Facebook\" href=\"https://facebook.com/\" target=\"_blank\" rel=\"noopener\"> <img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: block !important; border: none; height: auto; float: none; max-width: 32px !important;\" title=\"Facebook\" src=\"https://i.ibb.co/cD3kS6F/image-2.png\" alt=\"Facebook\" width=\"32\"> </a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table style=\"width: 32px !important; height: 32px !important; display: inline-block; border-collapse: collapse; table-layout: fixed; border-spacing: 0; vertical-align: top; margin-right: 10px;\" border=\"0\" width=\"32\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\">\r\n<tbody>\r\n<tr style=\"vertical-align: top;\">\r\n<td style=\"word-break: break-word; border-collapse: collapse !important; vertical-align: top;\" align=\"left\" valign=\"middle\"><a title=\"LinkedIn\" href=\"https://linkedin.com/\" target=\"_blank\" rel=\"noopener\"> <img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: block !important; border: none; height: auto; float: none; max-width: 32px !important;\" title=\"LinkedIn\" src=\"https://i.ibb.co/xhqvPc8/image-3.png\" alt=\"LinkedIn\" width=\"32\"> </a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table style=\"width: 32px !important; height: 32px !important; display: inline-block; border-collapse: collapse; table-layout: fixed; border-spacing: 0; vertical-align: top; margin-right: 10px;\" border=\"0\" width=\"32\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\">\r\n<tbody>\r\n<tr style=\"vertical-align: top;\">\r\n<td style=\"word-break: break-word; border-collapse: collapse !important; vertical-align: top;\" align=\"left\" valign=\"middle\"><a title=\"Instagram\" href=\"https://instagram.com/\" target=\"_blank\" rel=\"noopener\"> <img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: block !important; border: none; height: auto; float: none; max-width: 32px !important;\" title=\"Instagram\" src=\"https://i.ibb.co/q0374vh/image-4.png\" alt=\"Instagram\" width=\"32\"> </a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table style=\"width: 32px !important; height: 32px !important; display: inline-block; border-collapse: collapse; table-layout: fixed; border-spacing: 0; vertical-align: top; margin-right: 0px;\" border=\"0\" width=\"32\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\">\r\n<tbody>\r\n<tr style=\"vertical-align: top;\">\r\n<td style=\"word-break: break-word; border-collapse: collapse !important; vertical-align: top;\" align=\"left\" valign=\"middle\"><a title=\"X\" href=\"https://twitter.com/\" target=\"_blank\" rel=\"noopener\"> <img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: block !important; border: none; height: auto; float: none; max-width: 32px !important;\" title=\"X\" src=\"https://i.ibb.co/5KYnXP0/image-5.png\" alt=\"X\" width=\"32\"> </a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Footer Text -->\r\n<table id=\"u_content_text_3\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 10px 100px 30px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div class=\"v-text-align\" style=\"font-size: 14px; color: #ffffff; line-height: 170%; text-align: center; word-wrap: break-word;\">\r\n<p style=\"font-size: 14px; line-height: 170%;\">PRIVACY POLICY | TERMS OF SERVICE | SUPPORT</p>\r\n<p style=\"font-size: 14px; line-height: 170%;\"> </p>\r\n<p style=\"font-size: 14px; line-height: 170%;\">If you have any questions about your account security, please contact {site_name} support team immediately.</p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>', 'user', '{site_name}, {site_url}, {account_username}, {user_name}, {user_email}');
INSERT INTO `is_email` (`email_id`, `email_subject`, `email_content`, `email_for`, `email_doc`) VALUES
('delete_account', 'Account Deleted', '<table id=\"u_body\" style=\"border-collapse: collapse; table-layout: fixed; border-spacing: 0; mso-table-lspace: 0pt; mso-table-rspace: 0pt; vertical-align: top; min-width: 320px; margin: 0 auto; background-color: #ecf0f1; width: 100%;\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr style=\"vertical-align: top;\">\r\n<td>\r\n<div class=\"u-row-container\" style=\"padding: 0px; background-color: transparent;\">\r\n<div class=\"u-row\" style=\"margin: 0 auto; min-width: 320px; max-width: 600px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: transparent;\">\r\n<div style=\"border-collapse: collapse; display: table; width: 100%; height: 100%; background-color: transparent;\">\r\n<div id=\"u_column_2\" class=\"u-col u-col-100\" style=\"max-width: 320px; min-width: 600px; display: table-cell; vertical-align: top;\">\r\n<div style=\"background-color: #ffffff; height: 100%; width: 100% !important; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px;\">\r\n<div class=\"v-col-border\" style=\"box-sizing: border-box; height: 100%; padding: 0px; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px; border: 15px solid #95958d;\"><!-- Logo Section -->\r\n<table id=\"u_content_heading_1\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 20px 0px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<h1 class=\"v-text-align\" style=\"margin: 0px; color: #000000; line-height: 140%; text-align: center; word-wrap: break-word; font-size: 22px; font-weight: 400;\">{site_name}</h1>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Main Content -->\r\n<table id=\"u_content_text_2\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 20px 40px 10px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div class=\"v-text-align\" style=\"font-size: 14px; line-height: 140%; text-align: left; word-wrap: break-word;\">\r\n<p style=\"line-height: 140%;\">Hi {user_name},</p>\r\n<br>\r\n<p style=\"line-height: 140%;\">The account with the username <strong>{account_username}</strong> has been deleted.</p>\r\n<br>\r\n<div style=\"background: #f5f5f5; padding: 20px; border-left: 4px solid #95958d; border-radius: 5px;\">\r\n<p style=\"line-height: 170%;\">To continue using our services, please visit our client area to create a new account.</p>\r\n</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Action Button -->\r\n<table id=\"u_content_button_1\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 10px 10px 10px 40px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div class=\"v-text-align\" align=\"left\"><a class=\"v-button v-size-width\" style=\"box-sizing: border-box; display: inline-block; text-decoration: none; -webkit-text-size-adjust: none; text-align: center; color: #000000; background-color: #ffc25e; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px; width: 42%; max-width: 100%; overflow-wrap: break-word; word-break: break-word; word-wrap: break-word; mso-border-alt: none; font-size: 14px;\" href=\"{site_url}\" target=\"_blank\" rel=\"noopener\"> <span style=\"display: block; padding: 10px 20px; line-height: 120%;\">Create New Account</span> </a></div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Additional Info -->\r\n<table id=\"u_content_text_1\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 20px 40px 30px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div class=\"v-text-align\" style=\"font-size: 14px; line-height: 140%; text-align: left; word-wrap: break-word;\">\r\n<p style=\"line-height: 140%;\">If you have any questions or need assistance, please don\'t hesitate to contact our support team.</p>\r\n<br>\r\n<p style=\"line-height: 140%;\">Regards,<br>{site_name}</p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Divider Image -->\r\n<table style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 0px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-text-align\" style=\"padding-right: 0px; padding-left: 0px;\" align=\"center\"><img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: inline-block !important; border: none; height: auto; float: none; width: 90%; max-width: 540px;\" title=\"Divider\" src=\"https://i.ibb.co/GFy4JM6/image-1.png\" alt=\"Divider\" width=\"540\" align=\"center\" border=\"0\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<!-- Footer Section -->\r\n<div class=\"u-row-container\" style=\"padding: 0px; background-color: transparent;\">\r\n<div class=\"u-row\" style=\"margin: 0 auto; min-width: 320px; max-width: 600px; overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; background-color: transparent;\">\r\n<div style=\"border-collapse: collapse; display: table; width: 100%; height: 100%; background-color: transparent;\">\r\n<div class=\"u-col u-col-100\" style=\"max-width: 320px; min-width: 600px; display: table-cell; vertical-align: top;\">\r\n<div style=\"background-color: #8d95ff; height: 100%; width: 100% !important; border-radius: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px;\">\r\n<div style=\"box-sizing: border-box; height: 100%; padding: 0px;\"><!-- Social Media Icons --><!-- Social Media Icons -->\r\n<table id=\"u_content_social_1\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 50px 10px 10px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div style=\"direction: ltr;\" align=\"center\">\r\n<div style=\"display: table; max-width: 167px;\"><!-- Social Icons Container -->\r\n<table style=\"width: 32px !important; height: 32px !important; display: inline-block; border-collapse: collapse; table-layout: fixed; border-spacing: 0; vertical-align: top; margin-right: 10px;\" border=\"0\" width=\"32\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\">\r\n<tbody>\r\n<tr style=\"vertical-align: top;\">\r\n<td style=\"word-break: break-word; border-collapse: collapse !important; vertical-align: top;\" align=\"left\" valign=\"middle\"><a title=\"Facebook\" href=\"https://facebook.com/\" target=\"_blank\" rel=\"noopener\"> <img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: block !important; border: none; height: auto; float: none; max-width: 32px !important;\" title=\"Facebook\" src=\"https://i.ibb.co/cD3kS6F/image-2.png\" alt=\"Facebook\" width=\"32\"> </a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table style=\"width: 32px !important; height: 32px !important; display: inline-block; border-collapse: collapse; table-layout: fixed; border-spacing: 0; vertical-align: top; margin-right: 10px;\" border=\"0\" width=\"32\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\">\r\n<tbody>\r\n<tr style=\"vertical-align: top;\">\r\n<td style=\"word-break: break-word; border-collapse: collapse !important; vertical-align: top;\" align=\"left\" valign=\"middle\"><a title=\"LinkedIn\" href=\"https://linkedin.com/\" target=\"_blank\" rel=\"noopener\"> <img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: block !important; border: none; height: auto; float: none; max-width: 32px !important;\" title=\"LinkedIn\" src=\"https://i.ibb.co/xhqvPc8/image-3.png\" alt=\"LinkedIn\" width=\"32\"> </a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table style=\"width: 32px !important; height: 32px !important; display: inline-block; border-collapse: collapse; table-layout: fixed; border-spacing: 0; vertical-align: top; margin-right: 10px;\" border=\"0\" width=\"32\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\">\r\n<tbody>\r\n<tr style=\"vertical-align: top;\">\r\n<td style=\"word-break: break-word; border-collapse: collapse !important; vertical-align: top;\" align=\"left\" valign=\"middle\"><a title=\"Instagram\" href=\"https://instagram.com/\" target=\"_blank\" rel=\"noopener\"> <img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: block !important; border: none; height: auto; float: none; max-width: 32px !important;\" title=\"Instagram\" src=\"https://i.ibb.co/q0374vh/image-4.png\" alt=\"Instagram\" width=\"32\"> </a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table style=\"width: 32px !important; height: 32px !important; display: inline-block; border-collapse: collapse; table-layout: fixed; border-spacing: 0; vertical-align: top; margin-right: 0px;\" border=\"0\" width=\"32\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\">\r\n<tbody>\r\n<tr style=\"vertical-align: top;\">\r\n<td style=\"word-break: break-word; border-collapse: collapse !important; vertical-align: top;\" align=\"left\" valign=\"middle\"><a title=\"X\" href=\"https://twitter.com/\" target=\"_blank\" rel=\"noopener\"> <img style=\"outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; clear: both; display: block !important; border: none; height: auto; float: none; max-width: 32px !important;\" title=\"X\" src=\"https://i.ibb.co/5KYnXP0/image-5.png\" alt=\"X\" width=\"32\"> </a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Footer Text -->\r\n<table id=\"u_content_text_3\" style=\"font-family: \'Raleway\',sans-serif;\" role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"v-container-padding-padding\" style=\"overflow-wrap: break-word; word-break: break-word; padding: 10px 100px 30px; font-family: \'Raleway\',sans-serif;\" align=\"left\">\r\n<div class=\"v-text-align\" style=\"font-size: 14px; color: #ffffff; line-height: 170%; text-align: center; word-wrap: break-word;\">\r\n<p style=\"font-size: 14px; line-height: 170%;\">PRIVACY POLICY | TERMS OF SERVICE | SUPPORT</p>\r\n<p style=\"font-size: 14px; line-height: 170%;\"> </p>\r\n<p style=\"font-size: 14px; line-height: 170%;\">If you have any questions about your account security, please contact {site_name} support team immediately.</p>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>', 'user', '{site_name}, {site_url}, {account_username}, {user_name}, {user_email}');
-- --------------------------------------------------------
--
-- Table structure for table `is_gogetssl`
--
CREATE TABLE `is_gogetssl` (
`gogetssl_id` varchar(13) NOT NULL DEFAULT 'xera_gogetssl',
`gogetssl_username` varchar(100) NOT NULL,
`gogetssl_password` varchar(100) NOT NULL,
`gogetssl_status` varchar(8) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `is_gogetssl`
--
INSERT INTO `is_gogetssl` (`gogetssl_id`, `gogetssl_username`, `gogetssl_password`, `gogetssl_status`) VALUES
('xera_gogetssl', 'username', 'password', 'inactive');
-- --------------------------------------------------------
--
-- Table structure for table `is_mofh`
--
CREATE TABLE `is_mofh` (
`mofh_id` varchar(9) NOT NULL DEFAULT 'xera_mofh',
`mofh_username` varchar(256) NOT NULL,
`mofh_password` varchar(256) NOT NULL,
`mofh_cpanel` varchar(100) NOT NULL,
`mofh_ns_1` varchar(50) NOT NULL,
`mofh_ns_2` varchar(50) NOT NULL,
`mofh_package` varchar(50) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `is_mofh`
--
INSERT INTO `is_mofh` (`mofh_id`, `mofh_username`, `mofh_password`, `mofh_cpanel`, `mofh_ns_1`, `mofh_ns_2`, `mofh_package`) VALUES
('xera_mofh', 'username', 'password', 'cpanel', 'ns1', 'ns2', 'free');
-- --------------------------------------------------------
--
-- Table structure for table `is_oauth`
--
CREATE TABLE `is_oauth` (
`oauth_id` varchar(20) NOT NULL,
`oauth_client` varchar(100) NOT NULL,
`oauth_secret` varchar(100) NOT NULL,
`oauth_endpoint` varchar(100) NOT NULL,
`oauth_status` varchar(8) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `is_oauth`
--
INSERT INTO `is_oauth` (`oauth_id`, `oauth_client`, `oauth_secret`, `oauth_endpoint`, `oauth_status`) VALUES
('github', '', '', 'https://api.github.com/user', 'inactive'),
('google', '', '', 'https://www.googleapis.com/oauth2/v2/userinfo', 'inactive'),
('facebook', '', '', 'https://graph.facebook.com/me', 'inactive'),
('discord', '', '', 'https://discord.com/api/users/@me', 'inactive'),
('microsoft', '', '', 'https://graph.microsoft.com/v1.0/me', 'inactive');
-- --------------------------------------------------------
--
-- Table structure for table `is_recaptcha`
--
CREATE TABLE `is_recaptcha` (
`recaptcha_id` varchar(89) NOT NULL DEFAULT 'xera_recaptcha',
`recaptcha_site` varchar(200) NOT NULL,
`recaptcha_key` varchar(200) NOT NULL,
`recaptcha_status` varchar(8) NOT NULL,
`recaptcha_type` varchar(15) NOT NULL DEFAULT 'google'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `is_recaptcha`
--
INSERT INTO `is_recaptcha` (`recaptcha_id`, `recaptcha_site`, `recaptcha_key`, `recaptcha_status`, `recaptcha_type`) VALUES
('xera_recaptcha', 'site key', 'secret key', 'inactive', 'google');
-- --------------------------------------------------------
--
-- Table structure for table `is_reply`
--
CREATE TABLE `is_reply` (
`reply_id` int(11) NOT NULL,
`reply_content` varchar(10000) NOT NULL,
`reply_by` varchar(16) NOT NULL,
`reply_for` varchar(8) NOT NULL,
`reply_time` int(20) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `is_smtp`
--
CREATE TABLE `is_smtp` (
`smtp_id` varchar(9) NOT NULL DEFAULT 'xera_smtp',
`smtp_hostname` varchar(100) NOT NULL,
`smtp_username` varchar(100) NOT NULL,
`smtp_password` varchar(100) NOT NULL,
`smtp_port` varchar(8) NOT NULL,
`smtp_from` varchar(100) NOT NULL,
`smtp_status` varchar(8) NOT NULL,
`smtp_name` varchar(50) NOT NULL,
`smtp_encryption` varchar(5) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `is_smtp`
--
INSERT INTO `is_smtp` (`smtp_id`, `smtp_hostname`, `smtp_username`, `smtp_password`, `smtp_port`, `smtp_from`, `smtp_status`, `smtp_name`, `smtp_encryption`) VALUES
('xera_smtp', 'smtp.example.com', 'username', 'password', '587', 'jhon@example.com', 'inactive', 'Web Host', '');
-- --------------------------------------------------------
--
-- Table structure for table `is_ssl`
--
CREATE TABLE `is_ssl` (
`ssl_id` int(11) NOT NULL,
`ssl_pid` varchar(250) NOT NULL,
`ssl_key` varchar(20) NOT NULL,
`ssl_for` varchar(20) NOT NULL,
`ssl_private` varchar(5000) NOT NULL,
`ssl_type` varchar(50) DEFAULT NULL,
`ssl_domain` varchar(250) DEFAULT NULL,
`ssl_status` varchar(250) DEFAULT NULL,
`ssl_dns` varchar(250) NOT NULL,
`ssl_dnsid` varchar(250) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `is_ticket`
--
CREATE TABLE `is_ticket` (
`ticket_id` int(11) NOT NULL,
`ticket_subject` varchar(300) NOT NULL,
`ticket_content` varchar(10000) NOT NULL,
`ticket_status` varchar(20) NOT NULL,
`ticket_key` varchar(8) NOT NULL,
`ticket_for` varchar(16) NOT NULL,
`ticket_time` varchar(20) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `is_user`
--
CREATE TABLE `is_user` (
`user_id` int(11) NOT NULL,
`user_name` varchar(100) DEFAULT NULL,
`user_email` varchar(100) NOT NULL,
`user_cf_email` varchar(255) DEFAULT NULL,
`user_cf_key` text DEFAULT NULL,
`user_password` varchar(100) NOT NULL,
`user_key` varchar(16) NOT NULL,
`user_rec` varchar(32) NOT NULL,
`user_status` varchar(8) NOT NULL,
`user_oauth` varchar(8) NOT NULL DEFAULT 'disabled',
`user_date` varchar(20) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Indexes for dumped tables
--
--
-- Indexes for table `html_content`
--
ALTER TABLE `html_content`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `is_account`
--
ALTER TABLE `is_account`
ADD PRIMARY KEY (`account_id`);
--
-- Indexes for table `is_admin`
--
ALTER TABLE `is_admin`
ADD PRIMARY KEY (`admin_id`);
--
-- Indexes for table `is_ads`
--
ALTER TABLE `is_ads`
ADD PRIMARY KEY (`ad_id`),
ADD KEY `ad_placement` (`ad_placement`),
ADD KEY `ad_status` (`ad_status`);
--
-- Indexes for table `is_domain`
--
ALTER TABLE `is_domain`
ADD PRIMARY KEY (`domain_id`);
--
-- Indexes for table `is_reply`
--
ALTER TABLE `is_reply`
ADD PRIMARY KEY (`reply_id`);
--
-- Indexes for table `is_ssl`
--
ALTER TABLE `is_ssl`
ADD PRIMARY KEY (`ssl_id`);
--
-- Indexes for table `is_ticket`
--
ALTER TABLE `is_ticket`
ADD PRIMARY KEY (`ticket_id`);
--
-- Indexes for table `is_user`
--
ALTER TABLE `is_user`
ADD PRIMARY KEY (`user_id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `html_content`
--
ALTER TABLE `html_content`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `is_account`
--
ALTER TABLE `is_account`
MODIFY `account_id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `is_admin`
--
ALTER TABLE `is_admin`
MODIFY `admin_id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `is_ads`
--
ALTER TABLE `is_ads`
MODIFY `ad_id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `is_domain`
--
ALTER TABLE `is_domain`
MODIFY `domain_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `is_reply`
--
ALTER TABLE `is_reply`
MODIFY `reply_id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `is_ssl`
--
ALTER TABLE `is_ssl`
MODIFY `ssl_id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `is_ticket`
--
ALTER TABLE `is_ticket`
MODIFY `ticket_id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `is_user`
--
ALTER TABLE `is_user`
MODIFY `user_id` int(11) NOT NULL AUTO_INCREMENT;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;