-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
45 lines (38 loc) · 1.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Certificado de Asistencia</title>
<style>
body {
background-image: url("Fondo.png");
background-repeat: no-repeat;
background-size: cover;
overflow: auto;
}
</style>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<img src="./ESCUDO-COLOR-H.png" alt="Logo">
<br>
<h4>Bienvenida asistente</h4>
<h5>En este lugar, podrás obtener tu certificado de participación<br>en el IWD 2024</h5>
<h5>Por favor introduce tus datos:</h5>
</header>
<main>
<label for="name">Nombre Completo</label>
<input required placeholder="Nombre" type="text" name="Name" id="name" autocomplete="name" style="text-align: center;">
<br>
<label for="id">Número de identificación</label>
<input required placeholder="Identificación" type="text" name="Name" id="id" autocomplete="id" style="text-align: center;">
<button id="submitBtn">Generar certificado</button>
</main>
<script src="https://unpkg.com/[email protected]"></script>
<script src="./FileSaver.js"></script>
<script src="https://unpkg.com/@pdf-lib/[email protected]"></script>
<script src="./index.js"></script>
</body>
</html>