-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (36 loc) · 1.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Certificate Generator | Hack Club ITER</title>
<link rel="icon" type="image/png" sizes="32x32" href="https://assets.hackclub.com/favicons/favicon-32x32.png">
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<div class="container">
<!-- Headers -->
<div class="brand-logo"></div>
<div class="brand-title">Hack Club ITER.</div>
<div class="brand-title-small">Certificate Generator</div>
<div class="inputs">
<!-- User Name -->
<label>Name</label>
<input type="text" class="question" placeholder="Enter your name!" id="name" required autocomplete="off" />
<!-- Validation Code -->
<label>Validation Code</label>
<input type="text" placeholder="Enter the key!" id="validation" required autocomplete="off"/>
<p id="alert"></p>
<button type="submit" id="submitBtn">Download Certificate</button>
<p>Download your CodeMania Certificate</p>
</div>
</div>
<script>
</script>
<script src="https://unpkg.com/pdf-lib/dist/pdf-lib.min.js"></script>
<script src="https://unpkg.com/@pdf-lib/[email protected]"></script>
<script src="./assets/js/filesaver.js"></script>
<script src="./assets/js/index.js"></script>
</body>
</html>