-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (52 loc) · 2.66 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Download Your Certificate</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/pdf-lib/1.17.1/pdf-lib.min.js"></script>
<!-- Font Awesome CDN for icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body class="flex flex-col items-center justify-center min-h-screen bg-gray-100">
<div class="bg-white p-8 rounded-lg shadow-md w-full max-w-md text-center relative">
<!-- Logo Image -->
<img src="logo.png" alt="Logo" class="mx-auto mb-6 w-32 h-auto" />
<h1 class="text-xl font-bold mb-4">Download Your Certificate</h1>
<!-- Event Subheading -->
<h2 class="text-lg font-semibold mb-4 text-gray-700">
Open Session 2.0: Code Retreat
</h2>
<!-- Suggestions container positioned above the input field -->
<div id="suggestions" class="absolute left-0 right-0 bg-white border border-gray-300 mb-1 rounded shadow-lg z-10 hidden"></div>
<input type="text" id="nameInput" placeholder="Enter your name" class="border border-gray-300 p-2 w-full rounded mb-4">
<button id="downloadBtn" class="bg-blue-500 text-white p-2 rounded w-full">Download Certificate</button>
<p id="message" class="mt-4 text-red-500"></p>
</div>
<!-- Big Font Text -->
<h2 class="text-3xl font-semibold mt-8 mb-4 text-center">
Happy Hacking With CWH
</h2>
<!-- Social Media Icons -->
<div class="mb-4 flex space-x-4">
<a href="https://instagram.com/codewavehub" target="_blank" class="text-2xl text-gray-600 hover:text-gray-800">
<i class="fab fa-instagram"></i>
</a>
<a href="https://twitter.com/codewavehub" target="_blank" class="text-2xl text-gray-600 hover:text-gray-800">
<i class="fab fa-twitter"></i>
</a>
<a href="https://bit.ly/cwh-discord" target="_blank" class="text-2xl text-gray-600 hover:text-gray-800">
<i class="fab fa-discord"></i>
</a>
<a href="https://chat.whatsapp.com/KD4yD9wdhPA3JNfHJr3Om0" target="_blank" class="text-2xl text-gray-600 hover:text-gray-800">
<i class="fab fa-whatsapp"></i>
</a>
</div>
<!-- Footer -->
<footer class="text-md text-gray-600 font-medium">
Made with <span class="text-red-500">♡</span>
</footer>
<script src="script.js"></script>
</body>
</html>