diff options
4 files changed, 22 insertions, 23 deletions
diff --git a/modules/extra/webcpanel/templates/default/chanserv/drop.html b/modules/extra/webcpanel/templates/default/chanserv/drop.html index 81db73167..1b7e788d0 100644 --- a/modules/extra/webcpanel/templates/default/chanserv/drop.html +++ b/modules/extra/webcpanel/templates/default/chanserv/drop.html @@ -15,7 +15,7 @@ {IF EXISTS CHANNEL_DROP} <div class="alert alert-danger" style="margin-top: 15px; margin-bottom: 0; padding-bottom: 0;"> <h4>Drop Channel <strong>{CHANNEL_DROP}</strong>?</h4> - <form class="form-horizontal" method="post" action="/operserv/akill"> + <form class="form-horizontal" method="post" action="/chanserv/drop"> <input type="hidden" value="{CHANNEL_DROP}" name="channel"> <input type="hidden" value="yes" name="drop"> <div class="form-group"> diff --git a/modules/extra/webcpanel/templates/default/footer.html b/modules/extra/webcpanel/templates/default/footer.html index 257f04288..57794a9ff 100644 --- a/modules/extra/webcpanel/templates/default/footer.html +++ b/modules/extra/webcpanel/templates/default/footer.html @@ -1,4 +1,5 @@ - <br> + <br> + </div> </div> </div> <div class="row"> diff --git a/modules/extra/webcpanel/templates/default/header.html b/modules/extra/webcpanel/templates/default/header.html index 4ccba74ae..60c324ceb 100644 --- a/modules/extra/webcpanel/templates/default/header.html +++ b/modules/extra/webcpanel/templates/default/header.html @@ -22,25 +22,23 @@ </head> <body> <div id="frontPages" class="container"> - <div class="row"> - <div class="navbar navbar-default"> - <span class="navbar-brand" style="margin-top: -1px">Anope Web <small>Control Panel</small></span> - <ul class="nav navbar-nav"> - {FOR CATEGORY_URL,CATEGORY_NAME IN CATEGORY_URLS,CATEGORY_NAMES} - <li - {IF EQ CATEGORY NickServ}{IF EQ CATEGORY_NAME NickServ}class="active"{END IF}{END IF} - {IF EQ CATEGORY ChanServ}{IF EQ CATEGORY_NAME ChanServ}class="active"{END IF}{END IF} - {IF EQ CATEGORY MemoServ}{IF EQ CATEGORY_NAME MemoServ}class="active"{END IF}{END IF} - {IF EQ CATEGORY HostServ}{IF EQ CATEGORY_NAME HostServ}class="active"{END IF}{END IF} - {IF EQ CATEGORY OperServ}{IF EQ CATEGORY_NAME OperServ}class="active"{END IF}{END IF}> - <a href="{CATEGORY_URL}">{CATEGORY_NAME}</a> - </li> - {END FOR} - </ul> - <span id="loggedIn" class="pull-right"> - <span>Logged in as {ACCOUNT}</span> <a href="/logout">(Logout)</a> - </span> - </div> + <div class="navbar navbar-default"> + <span class="navbar-brand" style="margin-top: -1px">Anope Web <small>Control Panel</small></span> + <ul class="nav navbar-nav"> + {FOR CATEGORY_URL,CATEGORY_NAME IN CATEGORY_URLS,CATEGORY_NAMES} + <li + {IF EQ CATEGORY NickServ}{IF EQ CATEGORY_NAME NickServ}class="active"{END IF}{END IF} + {IF EQ CATEGORY ChanServ}{IF EQ CATEGORY_NAME ChanServ}class="active"{END IF}{END IF} + {IF EQ CATEGORY MemoServ}{IF EQ CATEGORY_NAME MemoServ}class="active"{END IF}{END IF} + {IF EQ CATEGORY HostServ}{IF EQ CATEGORY_NAME HostServ}class="active"{END IF}{END IF} + {IF EQ CATEGORY OperServ}{IF EQ CATEGORY_NAME OperServ}class="active"{END IF}{END IF}> + <a href="{CATEGORY_URL}">{CATEGORY_NAME}</a> + </li> + {END FOR} + </ul> + <span id="loggedIn" class="pull-right"> + <span>Logged in as {ACCOUNT}</span> <a href="/logout">(Logout)</a> + </span> </div> <div class="row"> diff --git a/modules/extra/webcpanel/templates/default/nickserv/cert.html b/modules/extra/webcpanel/templates/default/nickserv/cert.html index 88c564d43..dcbf68818 100644 --- a/modules/extra/webcpanel/templates/default/nickserv/cert.html +++ b/modules/extra/webcpanel/templates/default/nickserv/cert.html @@ -1,5 +1,5 @@ {INCLUDE header.html} - <div class="panel-heading">Your certificate finrgerprints</div> + <div class="panel-heading">Your certificate fingerprints</div> <div class="panel-body"> {FOR M IN MESSAGES} <div class="alert alert-info"> @@ -20,7 +20,7 @@ <hr> - <h4>Add an certificate fingerprint</h4> + <h4>Add a certificate fingerprint</h4> <form class="form-horizontal" method="post" action="/nickserv/cert"> <div class="form-group"> <label class="control-label col-lg-2" for="certfp">Certificate:</label> |