mirror of
https://github.com/spiffcode/hostile-takeover.git
synced 2026-02-03 04:58:09 +00:00
18 lines
445 B
HTML
18 lines
445 B
HTML
{% extends "basepage.xhtml" %}
|
|
{% block html_title %}Hostile Takeover Message{% endblock %}
|
|
{% block page_content %}
|
|
<h1 class="pageTitle">MESSAGE</h1>
|
|
<div style="text-align:center;width:80%;margin:0 auto;font-size:20px;font-weight:bold;">
|
|
<br />
|
|
{% ifequal id 0 %}
|
|
Game not found.
|
|
{% endifequal %}
|
|
{% ifequal id 1 %}
|
|
Player not found.
|
|
{% endifequal %}
|
|
{% ifequal id 2 %}
|
|
Player hasn't played a game yet.
|
|
{% endifequal %}
|
|
</div>
|
|
{% endblock %}
|