anope

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

login.html (2132B)

      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 
     23 					<h1 class="form-signin-heading">Login <small>to continue</small></h1>
     24 
     25 					{IF EXISTS INVALID_LOGIN}
     26 					<div class="alert alert-danger">
     27 						{INVALID_LOGIN}
     28 					</div>
     29 					{END IF}
     30 
     31 					<form class="form-horizontal form-signin" action="/" method="post">
     32 						<input type="text" name="username" class="form-control" placeholder="Username" required="required" autofocus
     33 							style="margin-bottom: -1px; border-bottom-left-radius: 0; border-bottom-right-radius: 0;">
     34 						<input type="password" name="password" class="form-control" placeholder="Password" required="required"
     35 							style="margin-bottom: 10px; border-top-left-radius: 0; border-top-right-radius: 0;">
     36 						<button class="btn btn-lg btn-primary btn-block" type="submit">Sign in</button>
     37 						<a class="btn btn-lg btn-warning btn-block" href="/register">Register</a>
     38 					</form>
     39 				</div>
     40 			</div>
     41 
     42 			<br>
     43 			<div class="row">
     44 				<div class="col-lg-offset-3 col-lg-6">
     45 					<div class="footer text-center">
     46 						Anope IRC Services - &copy; 2013-2022 Anope Team - <a href="https://www.anope.org/">https://www.anope.org/</a>
     47 					</div>
     48 				</div>
     49 			</div>
     50 		</div>
     51 
     52 		<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
     53 		<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
     54 	</body>
     55 </html>