-
Notifications
You must be signed in to change notification settings - Fork 0
/
formAddCanal.html
executable file
·37 lines (37 loc) · 1.56 KB
/
formAddCanal.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cadastro | Séries Assistidas</title>
<link href="bootstrap/css/bootstrap.css" rel="stylesheet">
<script src="bootstrap/js/popper.js"></script>
<script src="bootstrap/js/bootstrap.js"></script>
<script src="bootstrap/js/JQuery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(function(){
$("#menu").load("navbar.html");
});
});
</script>
</head>
<body>
<div class="container">
<div id="menu"></div>
<h1 class="h1 text-center" style="margin-top: 120px">Cadastro de Canais</h1>
</div>
<div class="container">
<form action="addCanal.php" method="post">
<div class="form-group">
<label for="name">Nome: </label>
<input type="text" class="form-control col-sm" name="nome" id="nome" style="width:25%;" placeholder="Digite o nome...">
</div>
<button type="submit" class="btn btn-outline-success my-2 my-sm-0">Cadastrar</button>
<a class="btn btn-outline-primary my-2 my-sm-0" href="index.html" onclick="return confirm('Tem certeza que deseja cancelar? Se você sair, seu progresso será perdido...');">Cancelar</a>
</form>
</div>
</div>
</body>
</html>