1
0
mirror of https://github.com/anope/anope.git synced 2026-06-27 18:26:39 +02:00
Files
anope/modules/extra/webcpanel/templates/default/chanserv/drop.html
T
MatthewM 1075f3b457 Allow opers to drop channels
Added chanserv drop to web panel
Allow long lists of akills to scroll
2012-12-14 16:44:14 -05:00

22 lines
674 B
HTML

{INCLUDE header.html}
{IF EXISTS MESSAGES}
{FOR M IN MESSAGES}
{M}<br/>
{END FOR}
{END IF}
<h3>Channels you can drop:</h3>
<div class="scroll">
{FOR CH,ECH IN CHANNEL_NAMES,ESCAPED_CHANNEL_NAMES}
<a href="/chanserv/drop?channel={ECH}">{CH}</a></br>
{END FOR}
</div>
{IF EXISTS CHANNEL_DROP}
<h3>Drop Channel {CHANNEL_DROP}?</h3>
<form method="post" name="dropForm" action="/chanserv/drop">
<input type="hidden" value="{CHANNEL_DROP}" name="channel">
Enter Channel For Confirmation: <input type="text" name="confChan">
<input type="hidden" value="yes" name="drop">
<input type="submit" value="Drop">
</form>
{END IF}
{INCLUDE footer.html}