mirror of
https://github.com/znc/znc.git
synced 2026-03-28 17:42:41 +01:00
Only his changes to the core are presented here. Unfortunately, the skin itself looks ugly on Opera, and simply doesn't work on Firefox... Merge branch 'master' into znc-ation Conflicts: modules/data/lastseen/tmpl/lastseen_WebadminUser.tmpl modules/data/webadmin/tmpl/settings.tmpl
44 lines
905 B
Cheetah
44 lines
905 B
Cheetah
<? INC Header.tmpl ?>
|
|
|
|
<form method="post" action="<? VAR ModPath ?>add">
|
|
<? INC _csrf_check.tmpl ?>
|
|
<div class="section">
|
|
<h3>Add A Note</h3>
|
|
<div class="sectionbg">
|
|
<div class="sectionbody">
|
|
<div class="subsection full">
|
|
<div class="inputlabel">Key:</div>
|
|
<input type="text" name="key" size="40" />
|
|
</div>
|
|
<div class="subsection submitline">
|
|
<input type="submit" name="add" value="Add Key" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
|
|
<? IF !KeyLoop ?>
|
|
<p>You have no keys.</p>
|
|
<? ELSE ?>
|
|
|
|
<table class="data">
|
|
<thead>
|
|
<tr>
|
|
<td></td>
|
|
<td>Key</td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<? LOOP KeyLoop ?>
|
|
<tr class="<? IF __EVEN__ ?>evenrow<? ELSE ?>oddrow<? ENDIF ?>">
|
|
<td>[<a href="<? VAR ModPath ?>delete?key=<? VAR Key ESC=URL,HTML ?>">del</a>]</td>
|
|
<td><? VAR Key ?></td>
|
|
</tr>
|
|
<? ENDLOOP ?>
|
|
</tbody>
|
|
</table>
|
|
<? ENDIF ?>
|
|
|
|
<? INC Footer.tmpl ?>
|