-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
30 lines (30 loc) · 1.41 KB
/
index.php
File metadata and controls
30 lines (30 loc) · 1.41 KB
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/index.css">
<script src="js/gameTimer.js"></script>
<title>Jogo da memória</title>
<link rel="icon" type="image/x-icon" href="/img/favicon.ico">
<?php
include("verificaLogin.php");
?>
</head>
<body onload="getElementsIndex()">
<div class="main">
<img src="img/textoLogo.png" alt="Jogo da memória" id="imgLogo">
<a href="selecaoTabuleiro.html" class="gameModeButton" id="classicModeBtn">Clássica</a>
<a href="selecaoTabuleiro.html" class="gameModeButton" id="aTimeModeBtn">Contra o tempo</a>
</div>
<div id="section">
<header>
<a href="ranking.php" title="Ranking"><img src="img/rankingButton.png" class="icon" alt="Icone para acessar o ranking"></a>
<a href="perfil.php" title="Perfil"><img src="img/perfilButton.png" class="icon" alt="Icone para acessar o perfil"></a>
<a href="historico.php" title="Histórico de Jogos"><img src="img/historicoButton.png" class="icon" alt="Icone para acessar o histórico"></a>
<a href="modalSairApp.html" title="Sair"><img src="img/scapeButton.png" class="icon" alt="Icone para deslogar"></a>
</header>
</div>
</body>
</html>