You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
405 B

{% extends 'common/master.html' %}
{% load static %}
{% block body %}
Welcome to a new game!
<br>
<button class="rpsbtn" id="rock">Rock</button>
<button class="rpsbtn" id="paper">Paper</button>
<button class="rpsbtn" id="scissors">Scissors</button>
{% include 'games/gamelog.html' %}
<script>
ROOM_ID = "{{ ROOM_ID }}";
</script>
<script src="{% static 'games/js/rps.js' %}"></script>
{% endblock %}