anope

- supernets anope source code & configuration
git clone git://git.acid.vegas/anope.git
Log | Files | Refs | Archive | README

drop.html (1143B)

      1 {INCLUDE header.html}
      2 {INCLUDE chanserv/chanlist.html}
      3 		<div class="panel-heading">Channels you can drop</div>
      4 		<div class="panel-body">
      5 			{FOR M IN MESSAGES}
      6 			<div class="alert alert-info">
      7 				{M}<br>
      8 			</div>
      9 			{END FOR}
     10 
     11 			{IF EXISTS CHANNEL_DROP}
     12 				<div class="alert alert-danger" style="margin-top: 15px; margin-bottom: 0; padding-bottom: 0;">
     13 					<h4>Drop Channel <strong>{CHANNEL_DROP}</strong>?</h4>
     14 					<form class="form-horizontal" method="post" action="/chanserv/drop">
     15 						<input type="hidden" value="{CHANNEL_DROP}" name="channel">
     16 						<input type="hidden" value="yes" name="drop">
     17 						<div class="form-group">
     18 							<label class="control-label col-lg-4" for="confChan">Confirm channel name:</label>
     19 							<div class="col-lg-4">
     20 								<input class="form-control" type="text" name="confChan" id="confChan" placeholder="This cannot be undone!">
     21 							</div>
     22 						</div>
     23 						<div class="form-group">
     24 							<div class="col-lg-offset-4 col-lg-4">
     25 								<button type="submit" class="btn btn-danger">Drop</button>
     26 							</div>
     27 						</div>
     28 					</form>
     29 				</div>
     30 			{END IF}
     31 		</div>
     32 {INCLUDE footer.html}