-
Notifications
You must be signed in to change notification settings - Fork 2
/
cadastrar_filme.php
55 lines (42 loc) · 1.54 KB
/
cadastrar_filme.php
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
<?php
include('conexao.php');
include('funcoes.php');
include('verificacao.php');
$login = $_SESSION['login'];
verificarEAtualizarStatusPendente($conexao, $login);
verificarLocacaoPendenteEExibirAlerta($conexao, $login);
$id_tipo_usuario = getTipoUsuario($conexao, $login);
verificarStatusUsuario($conexao, $login);
if ($id_tipo_usuario == 2) {
echo "<script>alert('Você não tem o direito de acessar essa página')</script>";
echo "<script>window.location.href='principal.php'</script>";
}
?>
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cadastrar Filme</title>
<link rel="stylesheet" href="style/styleGeral.css">
<link rel="stylesheet" href="style/cadastrarFilme.css">
</head>
<body>
<div class="container">
<form action="cadastrar_filme_scriptign.php" method="post">
<h1>Cadastrar Filme</h1>
<span>Nome do filme</span>
<input type="text" name="nome" id="nome" required><br>
<span>Ano</span>
<input type="text" name="ano" id="ano" required><br>
<span>Genero</span>
<input type="text" name="genero" id="genero" required><br>
<span>Unidades Disponíveis</span>
<input type="number" name="unidades_disponiveis" id="unidades_disponiveis"><br>
<div class="button-container">
<button type="submit">Cadastrar</button><br>
</div>
</form>
</div>
</body>
</html>