Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Verification in Progress</title>
- <style>
- body {
- font-family: Arial, sans-serif;
- background-color: #f0f0f0;
- margin: 0;
- padding: 20px;
- display: flex;
- justify-content: center;
- align-items: center;
- min-height: 100vh;
- }
- .container {
- background-color: white;
- padding: 30px;
- border-radius: 8px;
- box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
- max-width: 400px;
- width: 100%;
- text-align: center;
- }
- h1 {
- color: #333;
- margin-top: 0;
- }
- p {
- color: #666;
- line-height: 1.6;
- }
- .verification-text {
- color: #4CAF50;
- font-weight: bold;
- margin: 20px 0;
- }
- .loader {
- border: 16px solid #f3f3f3;
- border-top: 16px solid #FF9800;
- border-radius: 50%;
- width: 120px;
- height: 120px;
- animation: spin 2s linear infinite;
- margin: 20px auto;
- }
- @keyframes spin {
- 0% { transform: rotate(0deg); }
- 100% { transform: rotate(360deg); }
- }
- .tips {
- text-align: left;
- margin-top: 30px;
- }
- .tips h2 {
- color: #333;
- }
- .tips ul {
- padding-left: 20px;
- }
- .tips li {
- margin-bottom: 10px;
- color: #555;
- }
- </style>
- </head>
- <body>
- <div class="container">
- <h1>Important Notice</h1>
- <p>Your KYC is 80% Complete Please wait while your details are being verified. It will take a minimum of 24 hours to complete the verification process. You will receive a notification once your details are verified. Thank you for your patience. Please do not uninstall or close the application.</p>
- <div class="verification-text">Verification Under Process...</div>
- <div class="loader"></div>
- <div class="tips">
- <h2>Safe Banking Tips:</h2>
- <ul>
- <li>Be cautious of phishing and vishing attempts</li>
- <li>Avoid sharing account-related information</li>
- <li>For emails and SMS, carefully read the terms and conditions before proceeding</li>
- </ul>
- </div>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement