-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdados.html
90 lines (69 loc) · 2.67 KB
/
dados.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
86
87
88
89
90
<<<<<<< HEAD
<html>
<head>
<title>Cadastro de clientes</title>
</head>
<body>
<form >
<h1>Dados do cliente</h1>
</form>
</body>
</html>
=======
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Caflix</title>
<link rel="stylesheet" type="text/css" media="screen" href="node_modules/bootstrap/dist/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" media="screen" href="node_modules/font-awesome/css/font-awesome.min.css" />
<script src="/node_modules/jquery/dist/jquery.min.js"></script>
<script src="app.js" ></script>
</head>
<body>
<!--BARRA DE NAVEGAÇÃO-->
<nav class="navbar navbar-default navbar-fixed-top navbar-expand-lg navbar-dark bg-danger">
<div class="container">
<a class="navbar-brand h1 mb-0" href="#">Caflix</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSite">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSite">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="cadastrar.html">Cadastrar</a>
</li>
<li class="nav-item">
<a class="nav-link" href="listar.html">Listar</a>
</li>
</ul>
</div>
</div>
</nav>
<div id="mensagem"></div>
<label for="nome">Nome</label>
<input id="nome" name="nome" type="text" required>
<label for="sinopse">Sinopse</label>
<textarea id="sinopse" name="sinopse" type="textarea" required></textarea>
<label for="url-imagem">Url da imagem</label>
<input id="url-imagem" name="url_capa" type="url" required>
<button id="btn-cadastrar">Cadastrar</button>
<table class="table">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Nome</th>
<th scope="col">Sinopse</th>
<th scope="col">Img</th>
</tr>
</thead>
<tbody id="jogos">
</tbody>
</table>
</div>
</body>
</body>
</html>
>>>>>>> df532d0efb249ab6ff7c1ac593cac96ca5c9993c