summaryrefslogtreecommitdiff
path: root/modules/webcpanel/templates/default/login.html
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2014-01-02 11:02:14 -0500
committerAdam <Adam@anope.org>2014-01-02 11:03:33 -0500
commit004c4cbe5f4c37cf455cb6d0caa434fbbb3406ea (patch)
tree0e6675dfe28a829f5786b0b2f993566c61662de7 /modules/webcpanel/templates/default/login.html
parent072202c181943901c727782e64881adadf13d7dd (diff)
Move modules out of extras that dont have external dependencies
Diffstat (limited to 'modules/webcpanel/templates/default/login.html')
-rw-r--r--modules/webcpanel/templates/default/login.html55
1 files changed, 55 insertions, 0 deletions
diff --git a/modules/webcpanel/templates/default/login.html b/modules/webcpanel/templates/default/login.html
new file mode 100644
index 000000000..6a0b6d7a9
--- /dev/null
+++ b/modules/webcpanel/templates/default/login.html
@@ -0,0 +1,55 @@
+<!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>
+
+ <h1 class="form-signin-heading">Login <small>to continue</small></h1>
+
+ {IF EXISTS INVALID_LOGIN}
+ <div class="alert alert-danger">
+ {INVALID_LOGIN}
+ </div>
+ {END IF}
+
+ <form class="form-horizontal form-signin" action="/" method="post">
+ <input type="text" name="username" class="form-control" placeholder="Username" required="required" autofocus
+ style="margin-bottom: -1px; border-bottom-left-radius: 0; border-bottom-right-radius: 0;">
+ <input type="password" name="password" class="form-control" placeholder="Password" required="required"
+ style="margin-bottom: 10px; border-top-left-radius: 0; border-top-right-radius: 0;">
+ <button class="btn btn-lg btn-primary btn-block" type="submit">Sign in</button>
+ <a class="btn btn-lg btn-warning btn-block" href="/register">Register</a>
+ </form>
+ </div>
+ </div>
+
+ <br>
+ <div class="row">
+ <div class="col-lg-offset-3 col-lg-6">
+ <div class="footer text-center">
+ Anope IRC Services - &copy; 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>