Manual changes saved
Browse files- index.html +14 -20
index.html
CHANGED
|
@@ -11,34 +11,28 @@
|
|
| 11 |
|
| 12 |
<main id="main" class="w-full">
|
| 13 |
<!-- Alert Messages -->
|
| 14 |
-
<div id="fail_email" class="hidden fixed top-
|
| 15 |
-
<div class="flex
|
| 16 |
-
<
|
| 17 |
-
|
| 18 |
-
|
| 19 |
</div>
|
| 20 |
-
<button onclick="removeQuery()" class="ml-
|
| 21 |
-
<i data-feather="x" class="w-
|
| 22 |
</button>
|
| 23 |
</div>
|
| 24 |
-
<div class="p-4 text-red-700">
|
| 25 |
-
<p>Could not send an email! Please try again later.</p>
|
| 26 |
-
</div>
|
| 27 |
</div>
|
| 28 |
|
| 29 |
-
<div id="success_email" class="hidden fixed top-
|
| 30 |
-
<div class="flex
|
| 31 |
-
<
|
| 32 |
-
|
| 33 |
-
|
| 34 |
</div>
|
| 35 |
-
<button onclick="removeQuery()" class="ml-
|
| 36 |
-
<i data-feather="x" class="w-
|
| 37 |
</button>
|
| 38 |
</div>
|
| 39 |
-
<div class="p-4 text-green-700">
|
| 40 |
-
<p>We have sent you an email. Please check your inbox. If you can't find it in your primary inbox, please check your Spam or Junk folder.</p>
|
| 41 |
-
</div>
|
| 42 |
</div>
|
| 43 |
<!---Twitter Card data -->
|
| 44 |
<meta name="twitter:card" content="summary_large_image">
|
|
|
|
| 11 |
|
| 12 |
<main id="main" class="w-full">
|
| 13 |
<!-- Alert Messages -->
|
| 14 |
+
<div id="fail_email" class="hidden fixed top-4 right-4 max-w-md bg-red-100 border-l-4 border-red-500 text-red-700 p-4 rounded shadow-lg z-50">
|
| 15 |
+
<div class="flex items-center">
|
| 16 |
+
<i data-feather="alert-triangle" class="w-5 h-5 mr-2"></i>
|
| 17 |
+
<div class="flex-1">
|
| 18 |
+
Could not send an email! Please try again later.
|
| 19 |
</div>
|
| 20 |
+
<button onclick="removeQuery()" class="ml-4 text-red-700 hover:text-red-900">
|
| 21 |
+
<i data-feather="x" class="w-5 h-5"></i>
|
| 22 |
</button>
|
| 23 |
</div>
|
|
|
|
|
|
|
|
|
|
| 24 |
</div>
|
| 25 |
|
| 26 |
+
<div id="success_email" class="hidden fixed top-4 right-4 max-w-md bg-green-100 border-l-4 border-green-500 text-green-700 p-4 rounded shadow-lg z-50">
|
| 27 |
+
<div class="flex items-center">
|
| 28 |
+
<i data-feather="check-circle" class="w-5 h-5 mr-2"></i>
|
| 29 |
+
<div class="flex-1">
|
| 30 |
+
We have sent you an email. Please check your inbox. If you cannot view it in your primary inbox, please check your Spam or Junk folder.
|
| 31 |
</div>
|
| 32 |
+
<button onclick="removeQuery()" class="ml-4 text-green-700 hover:text-green-900">
|
| 33 |
+
<i data-feather="x" class="w-5 h-5"></i>
|
| 34 |
</button>
|
| 35 |
</div>
|
|
|
|
|
|
|
|
|
|
| 36 |
</div>
|
| 37 |
<!---Twitter Card data -->
|
| 38 |
<meta name="twitter:card" content="summary_large_image">
|