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