This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
fun-with-binary/auth/index.html
Diogo Cordeiro 1c59afa216 Special MostraUP release: Add Authentication
Translated interface to portuguese as this is a portuguese event
2019-03-22 16:35:03 +00:00

71 lines
2.3 KiB
HTML

<!--
Fun with Binary - a fun way of introducing binary
Copyright (C) 2018, Diogo Cordeiro.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=800" />
<title>Fun with Binary</title>
<meta name="description" content="A fun way of introducing binary">
<meta name="author" content="Diogo Cordeiro">
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body class="container">
<!-- auth_html_message_Busy -->
<div id="statement">
<p class="text" id="statement_text">
Já está alguém a jogar, espera pela tua vez! :)
</p>
</div>
<!-- auth_html_message_readyToPLay -->
<div id="statement">
<p class="text" id="statement_text">
Acende as lâmpadas conforme a caixa! :)
</p>
</div>
<!-- auth_html_login_dialog -->
<div class="images" id="leds">
</div>
<br>
<ul id="settings">
<li>
<div class="button">
<input type="button" onclick="submit_auth_form()" value="Vamos Jogar!" id="play_button">
</div>
</li>
</ul>
<!-- Credits -->
<p class="text" id="footer">Feito com <span style="color:
#e25555;">&#9829;</span> por
<a href="https://www.diogo.site/">Diogo Cordeiro</a></p>
<!-- JS -->
<script src="script.js"></script>
</body>
</html>