mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-15 15:30:16 +02:00
18 lines
638 B
HTML
18 lines
638 B
HTML
{% extends "public/base.html" %}
|
|
{% load staticfiles %}
|
|
|
|
{% block title %}Alliance Auth{% endblock %}
|
|
|
|
{% block page_title %}Something something here{% endblock page_title %}
|
|
{% block extra_css %}{% endblock extra_css %}
|
|
|
|
{% block content %}
|
|
<div class="col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2 main">
|
|
<h3> Really dumb right now</h3>
|
|
<p> Click button to add user to services</p>
|
|
<a href="/activateforum/"><button type="button" class="btn btn-default">Activate Forum</button></a>
|
|
<a href="/activatejabber/"><button type="button" class="btn btn-default">Activate Jabber</button></a>
|
|
</div>
|
|
|
|
{% endblock content %}
|