-
Notifications
You must be signed in to change notification settings - Fork 0
/
criarEvento.html
65 lines (59 loc) · 1.81 KB
/
criarEvento.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="assets/img/logored.svg">
<link rel="stylesheet" href="assets/css/reset.css">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/sala.css">
<link rel="stylesheet" href="assets/font-awesome-4.7.0/css/font-awesome.min.css">
<title>Criar Evento</title>
</head>
<body>
<nav>
<ul>
<li class="logo">
<a href="index.html">
<img src="assets/img/logored.svg" alt="logo">
</a>
</li>
<li>
<a href="salas.html">Salas </a>
</li>
<li>
<a href="perfil.html">Perfil</a>
</li>
<li>
<a href="criarsala.html">Criar Sala</a>
</li>
</ul>
<a href="login.html">
<button id="btn-logout">
<i class="fa fa-sign-out" aria-hidden="true"></i>
logout</button>
</a>
</nav>
<section id="criarSala">
<h1>Criar Sala</h1>
<div class="form">
<form action="" class="estiloForm">
<div class="label-input-form">
<label for="">Data</label>
<input type="date">
</div>
<div class="label-input-form">
<label for="">Senha</label>
<input type="password">
</div>
<div class="box-btn-form">
<button class="btn-Form-in">Criar</button>
</div>
</form>
</div>
</section>
<section class="background-Animation">
<div class="wave"></div>
<div class="wave"></div>
</section>
</body>
</html>