mirror of
https://github.com/znc/znc.git
synced 2026-06-27 05:21:38 +02:00
ba183e461f
* Be more const. * Be more correct: only accept requests to /mods/perform/, not to all URLs starting with that. * Be more considerate: Use "IRC server" instead of "IRCd". git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@2232 726aef4b-f618-498e-8847-2d620e286838
25 lines
693 B
Cheetah
25 lines
693 B
Cheetah
<? INC Header.tmpl ?>
|
|
|
|
<form method="post" action="/mods/perform/">
|
|
<? INC _csrf_check.tmpl ?>
|
|
<div class="section">
|
|
<h3>Perform</h3>
|
|
<div class="sectionbg">
|
|
<div class="sectionbody">
|
|
<div class="subsection full">
|
|
<div class="inputlabel">Perform commands:</div>
|
|
<div><textarea name="perform" cols="70" rows="5" class="monospace"><? LOOP PerformLoop ?><? VAR Perform ?>
|
|
<? ENDLOOP ?>
|
|
</textarea></div>
|
|
<br /><span class="info">Commands sent to the IRC server on connect, one per line.</span>
|
|
</div>
|
|
<div class="subsection submitline">
|
|
<input type="submit" name="save" value="Save" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
|
|
<? INC Footer.tmpl ?>
|