anope

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

confirm.html (1622B)

      1 <!DOCTYPE html>
      2 <!--[if IE 7]> <html lang="en" class="ie7"> <![endif]-->
      3 <!--[if IE 8]> <html lang="en" class="ie8"> <![endif]-->
      4 <!--[if IE 9]> <html lang="en" class="ie9"> <![endif]-->
      5 <!--[if !IE]><!-->
      6 <html lang="en">
      7 	<!--<![endif]-->
      8 	<head>
      9 		<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet">
     10 		<link href="/static/style.css" media="screen" rel="stylesheet" type="text/css" />
     11 		<!--[if lt IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script><![endif]-->
     12 
     13 		<title>{TITLE}</title>
     14 	</head>
     15 	<body>
     16 		<div id="frontPages" class="container">
     17 			<div class="row">
     18 				<div class="col-lg-offset-4 col-lg-4">
     19 					<a href="/">
     20 						<img src="/static/logo.png" class="img-responsive">
     21 					</a>
     22 					<a href="/" class="btn btn-lg btn-default btn-block">Back Home</a>
     23 
     24 					<h1 class="form-signin-heading">Register</h1>
     25 
     26 					{IF EXISTS MESSAGES}
     27 					<div class="alert alert-warning">
     28 						{FOR M IN MESSAGES}
     29 							{M}<br/>
     30 						{END FOR}
     31 					</div>
     32 					{END IF}
     33 
     34 					<a href="/register" class="btn btn-lg btn-default btn-block">Retry</a>
     35 				</div>
     36 			</div>
     37 
     38 			<br>
     39 			<div class="row">
     40 				<div class="col-lg-offset-3 col-lg-6">
     41 					<div class="footer text-center">
     42 						Anope IRC Services - &copy; 2013-2022 Anope Team - <a href="https://www.anope.org/">https://www.anope.org/</a>
     43 					</div>
     44 				</div>
     45 			</div>
     46 		</div>
     47 
     48 		<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
     49 		<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
     50 	</body>
     51 </html>