mirror of
https://github.com/znc/znc.git
synced 2026-03-28 17:42:41 +01:00
Instead of having the template files and images in /usr/share/znc/www/<mod>/, modules now get to use /usr/share/znc/<mod>/tmpl/ and files/ for this purpose. This puts those directories for static data to good use again and might even fix some bugs (after all, the code for that dir is older and more tested than the new code for www/). git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@1997 726aef4b-f618-498e-8847-2d620e286838
24 lines
681 B
Cheetah
24 lines
681 B
Cheetah
<? INC Header.tmpl ?>
|
|
|
|
<div class="section">
|
|
<h3>Confirm User Deletion</h3>
|
|
<div class="sectionbg">
|
|
<div class="sectionbody">
|
|
<div class="subsection">
|
|
Are you sure you want to delete "<? VAR Username ?>"?
|
|
<form action="deluser" method="post">
|
|
<? INC _csrf_check.tmpl ?>
|
|
<input type="hidden" name="submitted" value="1" />
|
|
<input type="hidden" name="user" value="<? VAR Username ?>" />
|
|
<div class="yesnobutton"><input type="submit" value="Yes" /></div>
|
|
</form>
|
|
<form action="listusers" method="get">
|
|
<div class="yesnobutton"><input type="submit" value="No" /></div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<? INC Footer.tmpl ?>
|