mirror of
https://github.com/anope/anope.git
synced 2026-06-27 22:36:39 +02:00
8267407a78
Add missing ESCAPED_CHANNEL Changed EMAIL_TYPE to FORCE_EMAIL. Now makes more sense Make it more obvious when the 'email' field is optional Add a 'Retry' button to go back to the registration page Fixed broken chanlist functionality. Before even if the user clicked on the channels nothing happened, now it goes straight to the 'set' page (at least something happens) Small fix, disable the 'Save' button if user has no SET powers Add another missing ESCAPED_CHANNEL Add a more clear definition of what hostmasks are allowed in that field, either user@host or nick\!user@host Fix wrongly placed var Changed some aesthetics
52 lines
1.6 KiB
HTML
52 lines
1.6 KiB
HTML
<!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="http://html5shim.googlecode.com/svn/trunk/html5.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 Anope Team - <a href="http://anope.org">http://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>
|