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.

13 lines
349 B

{% extends 'common/master.html' %}
{% block body %}
<p>Welcome, {{ user.username }}!</p>
<p>Email: {{ user.email }}.</p>
<a href="{% url 'chat' %}">Chat</a>
<br>
<a href="{% url 'minesweeper' %}">Minesweeper (Single Player)</a>
<br>
<a href="{% url 'rps' %}">Rock, Paper, Scissors</a>
<br>
<a href="{% url 'logout' %}">Logout</a>
<br>
{% endblock %}