mirror of
https://github.com/znc/znc.git
synced 2026-03-28 17:42:41 +01:00
Prefix links in templates with URIPrefix and add the input field to the Listener editor. The URIPrefix is provided as a top-level template variable. All URIs have been changed to have the prefix prepended.
24 lines
822 B
Cheetah
24 lines
822 B
Cheetah
<? INC Header.tmpl ?>
|
|
|
|
<div class="section">
|
|
<h3>Confirm Network Deletion</h3>
|
|
<div class="sectionbg">
|
|
<div class="sectionbody">
|
|
<div class="subsection">
|
|
Are you sure you want to delete "<? VAR Username ?>/<? VAR Network ?>"?
|
|
<form action="<? VAR URIPrefix TOP ?><? VAR ModPath TOP ?>delnetwork" method="post">
|
|
<? INC _csrf_check.tmpl ?>
|
|
<input type="hidden" name="user" value="<? VAR Username ?>" />
|
|
<input type="hidden" name="name" value="<? VAR Network ?>" />
|
|
<div class="yesnobutton"><input type="submit" value="Yes" /></div>
|
|
</form>
|
|
<form action="<? VAR URIPrefix TOP ?><? VAR ModPath TOP ?>listusers" method="get">
|
|
<div class="yesnobutton"><input type="submit" value="No" /></div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<? INC Footer.tmpl ?>
|