|
Server : LiteSpeed System : Linux terra.hostitbro.com 5.14.0-611.54.3.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:31:24 EDT 2026 x86_64 User : outerorb ( 1091) PHP Version : 8.1.34 Disable Function : mail Directory : /home2/outerorb/fasthelp.cc/mail/ | |
|
Path: /home2/outerorb/fasthelp.cc/mail/index.php
Size: 3.47 KB
Permissions: 0644
<?php
require_once __DIR__ . '/config/db.php';
require_once __DIR__ . '/includes/functions.php';
// If admin is logged in, redirect straight to admin dashboard
if (isAdminLoggedIn()) {
header("Location: admin/index.php");
exit;
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Proton Mail Invitation & Activity Tracker</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Plus Jakarta Sans', sans-serif;
background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
color: #ffffff;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
margin: 0;
padding: 20px;
}
.portal-card {
background: #ffffff;
color: #0f172a;
border-radius: 20px;
padding: 44px;
max-width: 520px;
width: 100%;
text-align: center;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
}
.icon {
width: 60px;
height: 60px;
background: #eef2ff;
color: #4f46e5;
border-radius: 16px;
display: inline-flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
}
h1 {
font-size: 24px;
font-weight: 700;
margin-bottom: 8px;
}
p {
color: #64748b;
font-size: 14px;
line-height: 1.6;
margin-bottom: 28px;
}
.actions {
display: flex;
flex-direction: column;
gap: 12px;
}
.btn {
display: block;
padding: 13px 20px;
border-radius: 10px;
text-decoration: none;
font-weight: 600;
font-size: 14px;
transition: all 0.2s;
}
.btn-primary {
background: #4f46e5;
color: #ffffff;
}
.btn-primary:hover {
background: #4338ca;
}
.btn-secondary {
background: #f1f5f9;
color: #334155;
border: 1px solid #e2e8f0;
}
.btn-secondary:hover {
background: #e2e8f0;
}
</style>
</head>
<body>
<div class="portal-card">
<div class="icon">
<svg width="30" height="30" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z" />
</svg>
</div>
<h1>Email Activity & Submission System</h1>
<p>Proton Mail integration tracker for client invitations, email opens, and real IP submission logs.</p>
<div class="actions">
<a href="admin/login.php" class="btn btn-primary">Go to Admin Control Panel →</a>
<a href="submit.php" class="btn btn-secondary">Preview Submission Landing Page</a>
</div>
</div>
</body>
</html>