aboutsummaryrefslogtreecommitdiff
path: root/oldwww/login.php
diff options
context:
space:
mode:
authorroot2014-04-14 08:35:13 +0200
committerroot2014-04-14 08:35:13 +0200
commit12734da8826299ffd24c0a15f6dbf205892d7221 (patch)
tree3b894dd30e332df23a564ce44e42ce164c8abd78 /oldwww/login.php
parent7b9d516cd3bcdb8eaa5f1eb533d71010061c681b (diff)
downloadjungegemeinde-12734da8826299ffd24c0a15f6dbf205892d7221.tar.gz
Pushed to v3
Diffstat (limited to 'oldwww/login.php')
-rw-r--r--oldwww/login.php70
1 files changed, 70 insertions, 0 deletions
diff --git a/oldwww/login.php b/oldwww/login.php
new file mode 100644
index 0000000..bfba63e
--- /dev/null
+++ b/oldwww/login.php
@@ -0,0 +1,70 @@
+<?php
+
+/* Copyright Maximilian Möhring, 2013
+Licensed under the GPL. Read LICENSE for more Information.*/
+
+if ($_GET["logout"] == 1) {
+ $logout = "<br><div style='color:red;'>Ausloggen erfolgreich</div>";
+}
+if ($_GET["failure"] == 1) {
+ $logout = "<br><div style='color:red;'>Name oder Passwort falsch!</div>";
+}
+
+
+?>
+<!doctype html public '-//W3C//DTD XHTML 1.0 //EN'>
+
+<html>
+<head>
+ <title>Junge Gemeinde Adlershof.</title>
+ <meta http-equiv='Content-type' content='text/html; charset=utf-8' />
+ <link rel='stylesheet' type='text/css' href='hyperstyle.css' />
+ <link rel='shortcut icon' href='/favicon.ico' type='image/x-icon'>
+</head>
+
+<body link='#000000' vlink='#000000' alink='#FF0000'>
+
+<div class='kleineschrift'>
+ <div id='header' >
+ <br><br>
+ <hr>
+ </div>
+
+ <div id='content_container' align='center'>
+ <br>
+ <div class='ueberschrift'><p>JUNGE GEMEINDE ADLERSHOF</p></div>
+ <div id='container' align='center'>
+
+ <?php echo $logout; ?>
+ <br>
+ <form method='post' action='check.php' >
+ <div class='hundertfuenfzig'><p>Login:</p></div>
+ <p><input type='text' name='username' size='40'/></p>
+ <p><input type='password' name='password' size='40'/></p>
+
+
+ <p><input type='submit' name='submit' value='Miau!'/></p>
+
+ </form><br>
+ Info: You have five attempts. You will be banned for 6 hours after your login attempts run out.<br>
+ <a style='text-decoration:underline;' href='reset.php'>Passwort vergessen? Klick hier.</a>
+
+
+ <br><br>
+ <div class='katze' align='center'>
+<pre>
+ _ ___ _.--.
+ \`.|\..----...-'` `-._.-'_.-'`
+ / ' ` , __.--'
+ )/' _/ \ `-_, /
+ `-''' `''\_,_.-;_.-\_ ',
+ _.-'_./ {_.' ; /
+ {_.-``-' {_/
+</pre>
+ </div>
+ </div>
+ </div>
+</div>
+</body>
+</html>
+