projet-integrateur/IPreoject-CLientSide/templates/menu.html
2022-01-16 18:14:15 +01:00

27 lines
No EOL
887 B
HTML

{% extends "layout.html" %}
{% block body %}
<div class="bloc">
<h2 style="color: #fff;">Choose an available game</h2>
<div class="select">
<select>
<option>Available modes</option>
<option value="1">Mode 1</option>
</select>
</div>
<!-- <div class="imgGame">
<img src="../static/images/iconG.png" alt="Our game..." style="border-radius: 50%;">
</div> -->
<div class="text-box" style="margin-left: 40px; margin-top: 55px; margin-bottom: 0;">
<a href="/rules" class="btn btn1 btn-white btn-animate">Play a new game</a>
</div>
<div class="text-box" style="margin-right: 355px; margin-bottom: 0;">
<a href="/test" class="btn btn2 btn-white btn-animate">Join a game</a>
</div>
</div>
{% endblock %}