mirror of
https://github.com/znc/znc.git
synced 2026-07-04 17:01:23 +02:00
42 lines
1.1 KiB
Cheetah
42 lines
1.1 KiB
Cheetah
<? INC Header.tmpl ?>
|
|
|
|
<form method="post" action="<? VAR ModPath ?>">
|
|
<? INC _csrf_check.tmpl ?>
|
|
|
|
<div class="section">
|
|
<h3>Send a raw IRC line</h3>
|
|
|
|
<div class="sectionbg">
|
|
<div class="sectionbody">
|
|
<div class="subsection third">
|
|
<div class="inputlabel">User:</div>
|
|
<select name="user">
|
|
<? LOOP UserLoop?>
|
|
<option value="<? VAR Username ESC=HTML ?>"><? VAR Username ESC=HTML ?></option>
|
|
<? ENDLOOP ?>
|
|
</select>
|
|
</div>
|
|
|
|
<div class="subsection third">
|
|
<div class="inputlabel">Send to:</div>
|
|
<select name="send_to">
|
|
<option value="client"<? IF to_client ?> selected="yes"<? ENDIF ?>>Client</option>
|
|
<option value="server"<? IF to_server ?> selected="yes"<? ENDIF ?>>Server</option>
|
|
</select>
|
|
</div>
|
|
|
|
<div class="subsection full">
|
|
<div class="inputlabel">Line:</div>
|
|
<input type="text" name="line" value="<? VAR line ?>" />
|
|
</div>
|
|
|
|
<div class="subsection submitline">
|
|
<input type="submit" value="Send"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
|
|
<? INC Footer.tmpl ?>
|