-
Notifications
You must be signed in to change notification settings - Fork 0
/
inscricao.html
85 lines (79 loc) · 3.52 KB
/
inscricao.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
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./recursos/css/style.css">
<link rel="shortcut icon" href="./recursos/img/favicon16.png" type="image/x-icon">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Rubik+Dirt&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Tourney:ital@0;1&display=swap" rel="stylesheet">
<link
href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap"
rel="stylesheet">
<title>MTG Draft - Inscrição</title>
</head>
<body>
<br>
<header class="container primary-header">
<div class="logo">
<img src="./recursos/img/logo-mtg.png" alt="Logomarca Magic The Gathering">
<span>DRAFT</span>
</div>
<nav class="nav primary-nav group">
<a href="index.html">Início</a>
<a href="evento.html">Evento</a>
<a href="local.html">Local</a>
<a href="inscricao.html">Inscrição</a>
</nav>
</header>
<section class="container content">
<h1 class="disclaimer">INSCRIÇÃO</h1>
<section class="intro">
<section class="row">
<div class="grid">
<section class="col-2-3">
<p>Preencha o formulário para se inscrever no evento.</p>
<h2>Valor da inscrição</h2>
<p id="valor">R$100,00</p>
<img id="planeswalker" src="./recursos/img/jace.webp" alt="Jace Beleren">
</section><!--
--><form class="col-1-3" action="#" method="post">
<fieldset class="inscricao">
<label>Nome:
<input type="text" name="nome" placeholder="Nome Completo" required>
</label>
<label>E-mail:
<input type="email" name="email" placeholder="E-mail" required>
</label>
<label>Telefone:
<input type="tel" name="telefone" placeholder="Telefone">
</label>
<label>Data de nascimento:
<input type="date" name="nascimento" required>
</label>
<label>Comentários
<textarea name="comentarios" placeholder="Deixe um comentário."></textarea>
</label>
</fieldset>
<input class="btn btn-default" type="submit" name="enviar" value="Enviar">
</form>
</div>
</section>
</section>
</section>
<footer class="container primary-footer">
<nav class="nav">
<a href="index.html">Início</a>
<a href="evento.html">Evento</a>
<a href="local.html">Local</a>
<a href="inscricao.html">Inscrição</a>
</nav>
<div class="copyright">
<img src="./recursos/img/wotc-logo.png" alt="Logomarca Wizards of the Coast" class="wizards-logo">
<small>©</small>
</div>
</footer>
<br>
</body>
</html>