Added Listen Port table

git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@647 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
prozacx
2006-02-12 00:19:54 +00:00
parent 1fe82b66fb
commit 6716e6f686
2 changed files with 57 additions and 4 deletions
@@ -3,6 +3,38 @@
<form action="/settings" method="post">
<input type="hidden" name="submitted" value="1" />
<div class="section">
<div class="sectiontitle">Listen Port(s)</div>
<div class="sectionbg">
<div class="sectionbody">
<div class="subsection">
<div class="inputlabel">Listen Port(s):</div>
<div>
<table>
<thead>
<tr>
<td>Port</td>
<td>BindHost</td>
<td>SSL</td>
<td>IPv6</td>
</tr>
</thead>
<? LOOP ListenLoop ?>
<tr class="<? IF __EVEN__ ?>evenrow<? ELSE ?>oddrow<? ENDIF ?>">
<td><? VAR Port ESC=HTML ?></td>
<td><? VAR BindHost ESC=HTML DEFAULT=* ?></td>
<td><? IF IsSSL ?>True<? ENDIF ?></td>
<td><? IF IsIPV6 ?>True<? ENDIF ?></td>
</tr>
<? ENDLOOP ?>
</table>
</div>
</div>
<div style="clear: both;"></div>
</div>
</div>
</div>
<div class="section">
<div class="sectiontitle">Settings</div>
<div class="sectionbg">