anope

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

register.html (2451B)

      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-danger">
     28 						{MESSAGES}
     29 					</div>
     30 					{END IF}
     31 
     32 					<form class="form-horizontal form-signin" action="/confirm" method="post">
     33 						<input type="text" name="username" class="form-control" placeholder="Username" required="required" autofocus
     34 							style="margin-bottom: -1px; border-bottom-left-radius: 0; border-bottom-right-radius: 0;">
     35 						<input type="password" name="password" class="form-control" placeholder="Password" required="required"
     36 							style="margin-bottom: -1px; border-radius: 0;">
     37 
     38 					{IF EXISTS FORCE_EMAIL}
     39 						<input type="email" name="email" class="form-control" placeholder="Email" required="required"
     40 							style="margin-bottom: 15px; border-top-left-radius: 0; border-top-right-radius: 0;">
     41 					{ELSE}
     42 						<h4>Optional</h4>
     43 						<input type="email" name="email" class="form-control" placeholder="Email"
     44 							style="margin-bottom: 15px;">
     45 					{END IF}
     46 
     47 						<button class="btn btn-lg btn-warning btn-block" type="submit">Register</button>
     48 					</form>
     49 				</div>
     50 			</div>
     51 
     52 			<br>
     53 			<div class="row">
     54 				<div class="col-lg-offset-3 col-lg-6">
     55 					<div class="footer text-center">
     56 						Anope IRC Services - &copy; 2013-2022 Anope Team - <a href="https://www.anope.org/">https://www.anope.org/</a>
     57 					</div>
     58 				</div>
     59 			</div>
     60 		</div>
     61 
     62 		<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
     63 		<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
     64 	</body>
     65 </html>