mirror of
https://github.com/OPSnet/Gazelle.git
synced 2026-01-16 18:04:34 -05:00
39 lines
1.2 KiB
Twig
39 lines
1.2 KiB
Twig
{{ header('Chat') }}
|
|
{% if user.disableIRC %}
|
|
<div class="thin">
|
|
<div class="header">
|
|
<h3 id="irc">IRC Privileges Disabled</h3>
|
|
</div>
|
|
<div class="box pad" style="padding: 10px 10px 10px 20px;">
|
|
<strong>Your IRC privileges are disabled.</strong>
|
|
</div>
|
|
</div>
|
|
{% else %}
|
|
<div class="thin">
|
|
<div class="header">
|
|
<h3 id="irc">IRC Rules - Please read these carefully!</h3>
|
|
</div>
|
|
<div class="box pad" style="padding: 10px 10px 10px 20px;">
|
|
{% include 'rules/irc.twig' %}
|
|
</div>
|
|
</div>
|
|
<div class="thin">
|
|
<div class="header">
|
|
<h3 id="general">Join the Chat</h3>
|
|
</div>
|
|
<div class="box pad" style="padding: 10px 0px 10px 0px;">
|
|
<div style="padding: 0px 10px 10px 20px;">
|
|
<p>If you have an IRC client, refer to <a href="wiki.php?action=article&name=irc">
|
|
this wiki article</a> for information on how to connect.</p>
|
|
<p>Alternatively you can use our web client.</p>
|
|
<p>
|
|
<a href="chat.php?action=webirc" target="_blank" class="ircjoin">
|
|
<button style="padding: .5em">Join Chat (opens new window)</button>
|
|
</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
{{ footer() }}
|