Impostor/www/index.html
2026-04-29 20:43:53 -03:00

44 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Impostor</title>
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
<script type="text/javascript" src="cordova.js"></script>
</head>
<body>
<header>
<img src="logo.png">
<h1 class="rainbowText">Impostor</h1>
</header>
<div id="playlistHolder">
<div id="playersList">
<div class="playerHolder">
<input type="text" placeholder="Nome do primeiro jogador"/>
</div>
<div class="playerHolder">
<input type="text" placeholder="Nome do segundo jogador"/>
</div>
<div class="playerHolder">
<input type="text" placeholder="Nome do terceiro jogador"/>
</div>
</div>
<button id="newPlayerButton">Adicionar jogador</button>
<div id="hintCheckHolder">
<p>Dicas</p>
<input type="checkbox" id="hintCheck" checked>
</div>
</div>
<div name="gameLog" id="gameLog">
<!-- game messages will be here -->
</div>
<div id="bottomBar">
<button id="startGame">Próximo</button>
</div>
</body>
</html>