forked from COLTEC-DAW/E09-Show-do-Bilhao
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
49 lines (43 loc) · 1.31 KB
/
index.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
<?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'; ?>
<?php
session_start();
if (!isset($_SESSION["username"])) {
header("Location: not-loged.php");
exit;
}
?>
<main>
<div class="container">
<h1 class="center-align">Vamos começar?</h1>
<div class="row">
<a class="waves-effect waves-light btn-large center-align col s12 green accent-4" href="perguntas.php?id=1">Bora.</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>