Added jabber broadcast,

This commit is contained in:
Raynaldo Rivera
2014-10-19 02:30:08 -07:00
parent 190947f18d
commit 7628941a2a
9 changed files with 116 additions and 4 deletions

View File

@@ -0,0 +1,30 @@
{% extends "public/base.html" %}
{% load bootstrap %}
{% load staticfiles %}
{% block title %}Alliance Auth{% endblock %}
{% block page_title %}Jabber Broadcast{% endblock page_title %}
{% block extra_css %}{% endblock extra_css %}
{% block content %}
<div class="col-lg-12">
<h1 class="page-header text-center">Jabber Broadcast</h1>
<div class="container-fluid">
<div class="col-md-4 col-md-offset-4">
<div class="row">
{% if success %}
<div class="alert alert-success" role="alert">Broadcast Sent!!</div>
{% endif %}
<form class="form-signin" role="form" action="" method="POST">
{% csrf_token %}
{{ form|bootstrap }}
<br/>
<button class="btn btn-lg btn-primary btn-block" type="submit">Broadcast</button>
</form>
</div>
</div>
</div>
</div>
{% endblock content %}