first commit
This commit is contained in:
commit
888c6bf2da
31 changed files with 2293 additions and 0 deletions
44
www/index.html
Normal file
44
www/index.html
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
<!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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue