File size: 2,673 Bytes
597ceb9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Email Verified - TextTrace</title>
  <style>
    body {
      margin: 0;
      padding: 0;
      font-family: "Segoe UI", Arial, sans-serif;
      background-color: #f5e6ca;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      color: #4b3621;
    }

    .container {
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-radius: 12px;
      padding: 40px;
      width: 90%;
      max-width: 500px;
      text-align: center;
      box-shadow: 0 8px 30px rgba(139, 90, 43, 0.15);
      border: 1px solid rgba(139, 90, 43, 0.1);
    }

    .success-icon {
      width: 80px;
      height: 80px;
      background-color: #8b5a2b;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0 auto 24px;
    }

    .checkmark {
      color: white;
      font-size: 40px;
      font-weight: bold;
    }

    h1 {
      margin: 0 0 24px 0;
      color: #8b5a2b;
      font-size: 28px;
      font-weight: 600;
    }

    p {
      font-size: 16px;
      margin-bottom: 20px;
      line-height: 1.6;
      color: #6e4f34;
    }

    .message {
      margin-bottom: 32px;
    }

    .btn {
      display: inline-block;
      padding: 12px 32px;
      font-size: 16px;
      color: #fff;
      background-color: #8b5a2b;
      text-decoration: none;
      border-radius: 6px;
      transition: all 0.3s ease;
      font-weight: 500;
      cursor: pointer;
      border: none;
      box-shadow: 0 2px 8px rgba(139, 90, 43, 0.3);
    }

    .btn:hover {
      background-color: #7a4f26;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(139, 90, 43, 0.4);
    }
    
    .btn:active {
      transform: translateY(0);
    }
    
    .footer {
      margin-top: 32px;
      font-size: 14px;
      color: #6e4f34;
      opacity: 0.8;
    }
  </style>
</head>
<body>
  <div class="container">
    <div class="success-icon">
      <span class="checkmark"></span>
    </div>
    <h1>Email Successfully Verified</h1>
    <div class="message">
      <p>Your email address has been confirmed and your TextTrace account is now fully activated.</p>
      <p>You can now close this window and continue using TextTrace from your Chrome extensions.</p>
    </div>
    <button class="btn" onclick="window.close()">Close Window</button>
    <div class="footer">
      <p>© 2025 TextTrace. All rights reserved.</p>
    </div>
  </div>
</body>
</html>