-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
27 lines (27 loc) · 838 Bytes
/
index.php
File metadata and controls
27 lines (27 loc) · 838 Bytes
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
<?php
session_start();
session_regenerate_id();
require_once("includes/verificationLoggedOut.php");
require_once("includes/connection.php");
include_once("view/head.html");
?>
<link rel="stylesheet" href="assets/css/index.css">
<title>Mini-Jogo</title>
</head>
<body class="index">
<?php include_once("includes/headerLogged.php")?>
<main>
<section class="main-section section-index">
<form class="form-index" action="#" method="post">
<button value="CN" name="A">Ciências da Natureza</button>
<button value="CH" name="A">Ciências Humanas</button>
<button value="LC" name="A">Linguagens e Códigos</button>
<button value="M" name="A">Matemática</button>
<button value="AL" name="A">Aleatório</button>
</form>
</section>
</div>
</main>
<?php include_once("view/footer.html")?>
</body>
</html>