✏️ Edit: index.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Creative FinTech - Webmail Access</title> <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet"> <style> * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 20px; position: relative; overflow-x: hidden; } body::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.15) 0%, transparent 50%), radial-gradient(circle at 40% 40%, rgba(99, 102, 241, 0.2) 0%, transparent 40%); pointer-events: none; } .container { background: rgba(255, 255, 255, 0.95); border-radius: 24px; box-shadow: 0 25px 80px -12px rgba(0, 0, 0, 0.4); max-width: 480px; width: 100%; overflow: hidden; position: relative; z-index: 1; backdrop-filter: blur(10px); } .header { background: linear-gradient(135deg, #0f3460 0%, #16213e 50%, #1a1a2e 100%); color: white; padding: 50px 40px; text-align: center; position: relative; overflow: hidden; } .header::before { content: ''; position: absolute; top: -50%; left: -50%; right: -50%; bottom: -50%; background: radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.4) 0%, transparent 50%), radial-gradient(circle at 70% 70%, rgba(236, 72, 153, 0.3) 0%, transparent 50%); animation: pulse 8s ease-in-out infinite; } @keyframes pulse { 0%, 100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.1); opacity: 0.8; } } .logo-container { position: relative; z-index: 1; } .logo { width: 90px; height: 90px; background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%); border-radius: 20px; margin: 0 auto 25px; display: flex; align-items: center; justify-content: center; font-size: 2.5em; box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4); position: relative; overflow: hidden; } .logo::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent); transform: rotate(45deg); animation: shine 3s infinite; } @keyframes shine { 0% { transform: translateX(-100%) rotate(45deg); } 100% { transform: translateX(100%) rotate(45deg); } } .header h1 { font-size: 1.8em; margin-bottom: 8px; font-weight: 700; position: relative; z-index: 1; letter-spacing: -0.02em; } .header .subtitle { font-size: 0.95em; opacity: 0.8; font-weight: 300; position: relative; z-index: 1; } .content { padding: 40px 35px; } .email-card { background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%); border: 1px solid #e2e8f0; border-radius: 16px; padding: 30px; margin-bottom: 25px; transition: all 0.3s ease; text-align: center; } .email-card:hover { border-color: #6366f1; box-shadow: 0 10px 40px -10px rgba(99, 102, 241, 0.2); transform: translateY(-2px); } .email-icon { width: 60px; height: 60px; background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.8em; color: white; } .email-card h3 { color: #1e293b; font-size: 1.3em; margin-bottom: 25px; font-weight: 600; } .btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: linear-gradient(135deg, #0f3460 0%, #16213e 100%); color: white; padding: 16px 40px; border-radius: 12px; text-decoration: none; font-weight: 600; font-size: 1em; transition: all 0.3s ease; border: none; cursor: pointer; width: 100%; position: relative; overflow: hidden; } .btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transition: left 0.5s ease; } .btn:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(15, 52, 96, 0.3); } .btn:hover::before { left: 100%; } .info { background: linear-gradient(145deg, #eff6ff 0%, #dbeafe 100%); border-left: 4px solid #6366f1; padding: 25px; border-radius: 12px; margin-top: 20px; } .info h4 { color: #1e40af; margin-bottom: 15px; font-size: 0.95em; font-weight: 600; display: flex; align-items: center; gap: 8px; } .info ul { list-style: none; color: #475569; font-size: 0.9em; line-height: 1.8; } .info li { padding-left: 24px; position: relative; margin-bottom: 8px; } .info li::before { content: "→"; position: absolute; left: 0; color: #6366f1; font-weight: bold; } .info code { background: #dbeafe; color: #1e40af; padding: 2px 8px; border-radius: 4px; font-family: 'Monaco', 'Consolas', monospace; font-size: 0.9em; } .footer { text-align: center; padding: 25px 35px 35px; color: #64748b; font-size: 0.85em; background: #f8fafc; border-top: 1px solid #e2e8f0; } .footer .brand { color: #0f3460; font-weight: 600; } .tagline { margin-top: 8px; font-size: 0.85em; color: #94a3b8; } .security-badge { display: inline-flex; align-items: center; gap: 6px; background: #dcfce7; color: #166534; padding: 8px 16px; border-radius: 20px; font-size: 0.8em; font-weight: 500; margin-top: 15px; } @media (max-width: 480px) { .header { padding: 35px 25px; } .header h1 { font-size: 1.5em; } .content { padding: 30px 20px; } .email-card { padding: 25px 20px; } } </style> </head> <body> <div class="container"> <div class="header"> <div class="logo-container"> <div class="logo">✉️</div> <h1>Creative FinTech</h1> <p class="subtitle">Secure Webmail Portal</p> </div> </div> <div class="content"> <div class="email-card"> <div class="email-icon">📧</div> <h3>Access Your Mailbox</h3> <a href="https://server1.csender.net:2096" class="btn"> <span>🔐</span> <span>Login to Webmail</span> </a> <div class="security-badge"> <span>🔒</span> <span>SSL Encrypted Connection</span> </div> </div> <div class="info"> <h4>📱 Email Client Settings</h4> <ul> <li><strong>IMAP Server:</strong> <code>mail.creativeft.com</code></li> <li><strong>IMAP Port:</strong> <code>993</code> (SSL/TLS)</li> <li><strong>SMTP Server:</strong> <code>mail.creativeft.com</code></li> <li><strong>SMTP Port:</strong> <code>465</code> (SSL) or <code>587</code> (TLS)</li> </ul> </div> </div> <div class="footer"> <span class="brand">Creative FinTech</span> © 2026 <div class="tagline">Forging Future Tech Solutions Today</div> </div> </div> </body> </html>
💾 Save
NovaShell
🛸 NovaShell — Cyber Yellow Mode
📂 Path:
home
/
csender
/
creativeft_webmail
/
👤 Create WP Admin
Upload
📁
Create Folder
📁
.well-known
[x]
📁
cgi-bin
[x]
📄
index.html
[✏]
[x]