mirror of
https://github.com/anope/anope.git
synced 2026-06-29 01:06:37 +02:00
8267407a78
Add missing ESCAPED_CHANNEL Changed EMAIL_TYPE to FORCE_EMAIL. Now makes more sense Make it more obvious when the 'email' field is optional Add a 'Retry' button to go back to the registration page Fixed broken chanlist functionality. Before even if the user clicked on the channels nothing happened, now it goes straight to the 'set' page (at least something happens) Small fix, disable the 'Save' button if user has no SET powers Add another missing ESCAPED_CHANNEL Add a more clear definition of what hostmasks are allowed in that field, either user@host or nick\!user@host Fix wrongly placed var Changed some aesthetics
32 lines
1.1 KiB
HTML
32 lines
1.1 KiB
HTML
{INCLUDE header.html}
|
|
{INCLUDE chanserv/chanlist.html}
|
|
<div class="panel-heading">Channels you can drop</div>
|
|
<div class="panel-body">
|
|
{FOR M IN MESSAGES}
|
|
<div class="alert alert-info">
|
|
{M}<br>
|
|
</div>
|
|
{END FOR}
|
|
|
|
{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="/chanserv/drop">
|
|
<input type="hidden" value="{CHANNEL_DROP}" name="channel">
|
|
<input type="hidden" value="yes" name="drop">
|
|
<div class="form-group">
|
|
<label class="control-label col-lg-4" for="confChan">Confirm channel name:</label>
|
|
<div class="col-lg-4">
|
|
<input class="form-control" type="text" name="confChan" id="confChan" placeholder="This cannot be undone!">
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<div class="col-lg-offset-4 col-lg-4">
|
|
<button type="submit" class="btn btn-danger">Drop</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
{END IF}
|
|
</div>
|
|
{INCLUDE footer.html} |