vlcsolutions commited on
Commit
54d07c5
·
verified ·
1 Parent(s): 1313ba4

Manual changes saved

Browse files
Files changed (1) hide show
  1. 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-6 right-6 max-w-md w-full bg-white border border-red-200 rounded-lg shadow-xl z-50 overflow-hidden">
15
- <div class="flex bg-red-50 px-4 py-2">
16
- <div class="flex items-center">
17
- <i data-feather="alert-triangle" class="w-5 h-5 text-red-600 mr-2"></i>
18
- <span class="font-medium text-red-800">Error</span>
19
  </div>
20
- <button onclick="removeQuery()" class="ml-auto text-red-500 hover:text-red-700 focus:outline-none">
21
- <i data-feather="x" class="w-4 h-4"></i>
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-6 right-6 max-w-md w-full bg-white border border-green-200 rounded-lg shadow-xl z-50 overflow-hidden">
30
- <div class="flex bg-green-50 px-4 py-2">
31
- <div class="flex items-center">
32
- <i data-feather="check-circle" class="w-5 h-5 text-green-600 mr-2"></i>
33
- <span class="font-medium text-green-800">Success</span>
34
  </div>
35
- <button onclick="removeQuery()" class="ml-auto text-green-500 hover:text-green-700 focus:outline-none">
36
- <i data-feather="x" class="w-4 h-4"></i>
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">