-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTecnicasDeFilmagem.php
67 lines (50 loc) · 1.68 KB
/
TecnicasDeFilmagem.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
56
57
58
59
60
61
62
63
64
65
66
67
<?php
session_start();
include('verificaaut.php');
?>
<DOCTYPE html>
<html lang="pt-br">
<head>
<title>Ambiente Virtual - Técnicas de Filmagem e Enquadramento</title>
<link href="pages/estilo/av.css" rel="stylesheet">
<meta charset="UTF-8">
<meta content='width=device-width, minimum-scale=1.0, maximum-scale=1.0' name='viewport'/>
<link rel="shortcut icon" type="image/png" href="img/eadico.png"/>
</head>
<body>
<div id="g1">
<div id="logo">
<a href="?">
<img src="img/logo.png" draggable="false"> </a>
</div>
<div id="cabecalho">
<a href="pages/global/ajuda.php#p1" target="ead">Sobre</a> <a href="https://informaticode.store/linksdabio" target=_"blank">Social</a> <a href="pages/global/ajuda.php" target="ead">Ajuda </a>
<div class="userarea">
<?php
$rota = $_SERVER['REQUEST_URI'];
$para = substr( $rota, -5);
$_SESSION['paralocal'] = $para;
if($para == 'eduzz') {
$_SESSION['eduzz'] = "<p style='color: gold;'>Obrigado por adquirir nosso curso pela Eduzz! Agora faça seu <b> cadastro de aluno </b> e tenha acesso a todo conteúdo!</p>";
}
?>
<?php
if(!$_SESSION['eMail']) {
echo "<a href='pages/global/cadastro.php' target='ead'>Criar Conta</a> <a href='pages/global/login.php' target='ead'><b>Entrar</b></a>";
} else {
echo "Olá <a href='pages/global/perfil.php' target='ead'>" . $_SESSION['Nome'] . "</a>! <a href='pages/global/fim.php'><b> Sair </b></a>";
}
?>
</div>
</div>
</div>
<div id="g2">
<center>
<iframe id="navegar" name="ead" src="pages/a7x/welcome.php" height="100%"></iframe>
</center>
</div>
<div id="g3">
Todos direitos reservados a <b>Informaticode</b> - 2020.
</div>
</body>
</html>