PATH:
home
/
u865795251
/
domains
/
whatisnewis.com
/
public_html
/
unibiotech
/
portal
/
Editing: thankyou.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Request Received - BulkPortal</title> <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" /> <link rel="stylesheet" href="style.css"> <style> .success-container { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 20px; } .success-card { background-color: var(--card-bg); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 64px 48px; text-align: center; max-width: 500px; width: 100%; } .success-icon { width: 80px; height: 80px; border-radius: 50%; background-color: rgba(52, 199, 89, 0.1); color: #34C759; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 24px; } .success-icon .material-symbols-outlined { font-size: 48px; } .success-title { font-size: 28px; margin-bottom: 16px; color: var(--text-primary); } .success-text { color: var(--text-secondary); font-size: 16px; line-height: 1.5; margin-bottom: 40px; } .order-ref { background-color: var(--background-color); padding: 16px; border-radius: var(--radius-md); font-family: monospace; font-size: 18px; font-weight: 600; color: var(--text-primary); margin-bottom: 40px; letter-spacing: 2px; } </style> </head> <body> <div class="success-container"> <div class="success-card"> <div class="success-icon"> <span class="material-symbols-outlined">check_circle</span> </div> <h1 class="success-title">Request Received!</h1> <p class="success-text"> Thank you for your bulk product request. Our wholesale team is reviewing your requirements and will be in touch shortly. </p> <p style="font-size: 14px; color: var(--text-secondary); margin-bottom: 8px;">Your Reference Number:</p> <div class="order-ref"> #REQ-849201 </div> <a href="panel.html" class="btn-primary" style="text-decoration: none;">Return to Dashboard</a> </div> </div> </body> </html>
SAVE
CANCEL