-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (68 loc) · 2.41 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="pt-br">
<head>
<!-- title -->
<title>Applicação</title>
<!-- meta -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- links / style -->
<link rel="icon"
type="image/png"
href="assets/images/icon.svg"
/>
<link rel="stylesheet" href="assets/style/style.css" />
<!-- scripts -->
<script src="https://cdn.jsdelivr.net/npm/dayjs@1/dayjs.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/dayjs@1/plugin/relativeTime.js"></script>
<script>
dayjs.extend(window.dayjs_plugin_relativeTime)
</script>
<script src="https://cdn.jsdelivr.net/npm/dayjs@1/locale/pt-br.js"></script>
<script>
dayjs.locale('pt-br')
</script>
<script defer src="js/main.js"></script>
</head>
<body>
<main class="container">
<header>
<img src="assets/images/logo.svg" alt="An logo icon.">
</header>
<form onsubmit="addParticipant(event)">
<fieldset>
<legend>Inscrição</legend>
<div>
<div class="input-wrapper">
<img src="assets/images/circle-user.svg" alt="An icon of a user.">
<input type="text" placeholder="Nome Completo" name="nome" required>
</div>
<div class="input-wrapper">
<img src="assets/images/at-sign.svg" alt="An sign icon.">
<input type="email" placeholder="Email" name="email" required>
</div>
<button>
REALIZAR INSCRIÇÃO
</button>
</div>
</fieldset>
</form>
<section class="participants-list">
<h2>Participantes</h2>
<div>
<table width="100%">
<thead style="text-align: left">
<tr>
<th>Participante</th>
<th>Data da inscrição</th>
<th>Data do check-in</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</section>
</main>
</body>
</html>