39 lines
1.4 KiB
HTML
39 lines
1.4 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport"
|
|
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<base href="/" target="_top">
|
|
<script src="static/js/index.js" defer="defer"></script>
|
|
<title>VOTE!</title>
|
|
<link rel="stylesheet" href="static/css/index.css">
|
|
</head>
|
|
<body>
|
|
<a href="/login" class="login" id="login">Se connecter</a>
|
|
<div id="app" class="app">
|
|
<h1 id="app_title">Vote +</h1>
|
|
<label for="player_id">Pour qui votes tu?</label>
|
|
<select id="player_id"></select>
|
|
<label for="nickname">As-tu un surnom à lui donner?</label>
|
|
<input type="text" id="nickname">
|
|
<label for="reason">Pourquoi votes-tu pour lui?</label>
|
|
<textarea id="reason"></textarea>
|
|
<div id="app-nav" class="app-nav">
|
|
<button id="prev" hidden="hidden" class="left-button">Précédent</button>
|
|
<button id="next" class="right-button">Suivant</button>
|
|
</div>
|
|
</div>
|
|
<div id="notification" class="notification" hidden="hidden">
|
|
<h1 id="title"></h1>
|
|
<h3 id="detail"></h3>
|
|
<button id="close">Fermer</button>
|
|
</div>
|
|
<div id="footer" class="footer">
|
|
<a href="/">Voter</a>
|
|
<a href="/results">Résultats</a>
|
|
<a href="/archives">Archives</a>
|
|
</div>
|
|
</body>
|
|
</html> |