Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 4,569 Bytes
f1a0148 |
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 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Email Preferences - TTS Arena</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
:root {
--primary-color: #5046e5;
--secondary-color: #f0f0f0;
--text-color: #333;
--light-gray: #f5f5f5;
--border-color: #e0e0e0;
--shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
--radius: 8px;
--success-color: #10b981;
--info-color: #3b82f6;
--warning-color: #f59e0b;
--error-color: #ef4444;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Inter', sans-serif;
}
body {
color: var(--text-color);
background-color: var(--light-gray);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}
.container {
max-width: 600px;
width: 100%;
background-color: white;
border-radius: var(--radius);
box-shadow: var(--shadow);
padding: 40px;
}
.logo {
font-size: 24px;
font-weight: 700;
margin-bottom: 24px;
color: var(--primary-color);
text-align: center;
}
h1 {
font-size: 24px;
margin-bottom: 16px;
text-align: center;
}
p {
margin-bottom: 24px;
line-height: 1.6;
}
.btn-container {
display: flex;
gap: 16px;
margin-top: 32px;
}
.btn {
flex: 1;
background-color: var(--primary-color);
color: white;
border: none;
border-radius: var(--radius);
padding: 12px 24px;
cursor: pointer;
font-weight: 500;
transition: background-color 0.2s;
text-align: center;
text-decoration: none;
display: inline-block;
}
.btn:hover {
background-color: #4038c7;
}
.btn-secondary {
background-color: white;
color: var(--text-color);
border: 1px solid var(--border-color);
}
.btn-secondary:hover {
background-color: var(--light-gray);
}
.footer {
margin-top: 40px;
text-align: center;
font-size: 14px;
color: #666;
}
.footer a {
color: var(--primary-color);
text-decoration: none;
}
/* Responsive styles */
@media (max-width: 768px) {
.container {
padding: 30px 20px;
}
h1 {
font-size: 22px;
}
}
@media (max-width: 480px) {
.btn-container {
flex-direction: column;
gap: 12px;
}
.btn {
width: 100%;
}
.container {
padding: 25px 15px;
}
h1 {
font-size: 20px;
}
.logo {
font-size: 22px;
margin-bottom: 20px;
}
}
</style>
</head>
<body>
<div class="container">
<div class="logo">TTS Arena</div>
<h1>Email Updates</h1>
<p>
Would you mind receiving occasional email updates about TTS Arena? We'll keep you informed about new models,
improvements, and important announcements.
</p>
<p>
We respect your privacy and promise not to spam your inbox. You can unsubscribe at any time. If you choose not to receive updates, we won't ask you again.
</p>
<div class="btn-container">
<a href="{{ url_for('subscribe_email', choice='yes') }}" class="btn">Yes, I'd like updates</a>
<a href="{{ url_for('subscribe_email', choice='no') }}" class="btn btn-secondary">No, thanks</a>
</div>
</div>
</body>
</html>
|