forked from COLTEC-DAW/E09-Show-do-Bilhao
-
Notifications
You must be signed in to change notification settings - Fork 0
/
not-loged.php
44 lines (37 loc) · 1.21 KB
/
not-loged.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
<?php
ob_start();
?>
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>Dá Bilhão?</title>
<link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!--Import materialize.css-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.2/css/materialize.min.css">
<link rel="stylesheet" href="css/main.css">
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
</head>
<body>
<?php include 'menu.inc'; ?>
<main>
<div class="container">
<div class="row">
<h2 class="center-align">Você não está logado.</h2>
<a href="login.php" class="btn indigo col s6">Login</a>
<a href="cadastro.php" class="btn light-blue col s6">Cadastro</a>
</div>
</div>
</main>
<?php include 'rodape.inc'; ?>
<!--Import jQuery before materialize.js-->
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.2/js/materialize.min.js"></script>
<script>
$(document).ready(function() {
$('select').material_select();
});
</script>
</body>
</html>