-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsalaIn.html
More file actions
101 lines (90 loc) · 2.79 KB
/
salaIn.html
File metadata and controls
101 lines (90 loc) · 2.79 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="pt-br">
<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>TADS</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="salaIn">
<h1>TADS</h1>
<div id="layer-btn">
<a href="criarevento.html">Criar Evento</a>
<a href="criarsala.html"> Editar</a>
</div>
<table>
<thead>
<tr>
<th>DATA</th>
<th>NOME</th>
<th>EDITAR</th>
<th>EXCLUIR</th>
</tr>
</thead>
<tbody>
<tr>
<td>12/03/2017</td>
<td>prova BD </td>
<td>
<i class="fa fa-pencil-square-o" aria-hidden="true">
</td>
<td>
<i class="fa fa-trash-o" aria-hidden="true"></i>
</td>
</tr>
<tr>
<td>12/03/2017</td>
<td>prova BD </td>
<td>
<i class="fa fa-pencil-square-o" aria-hidden="true">
</td>
<td>
<i class="fa fa-trash-o" aria-hidden="true"></i>
</td>
</tr>
<tr>
<td>12/03/2017</td>
<td>prova BD </td>
<td>
<i class="fa fa-pencil-square-o" aria-hidden="true"></i>
</td>
<td>
<i class="fa fa-trash-o" aria-hidden="true"></i>
</td>
</tr>
</tbody>
</table>
</section>
<section class="background-Animation">
<div class="wave"></div>
<div class="wave"></div>
</section>
</body>
</html>