aboutsummaryrefslogtreecommitdiff
path: root/www/login.php
diff options
context:
space:
mode:
authorHorus32014-09-25 10:33:47 +0200
committerHorus32014-09-25 10:33:47 +0200
commit1fe76ba743a3418da9a0883b29756d442384d0bc (patch)
tree091910ffd183d94c0f8b70a8f4c362f733033b03 /www/login.php
parent2036626b560f22efd59673187a2de3b1319fcf8a (diff)
downloadjungegemeinde-1fe76ba743a3418da9a0883b29756d442384d0bc.tar.gz
init
Diffstat (limited to 'www/login.php')
-rw-r--r--www/login.php70
1 files changed, 0 insertions, 70 deletions
diff --git a/www/login.php b/www/login.php
deleted file mode 100644
index f20a568..0000000
--- a/www/login.php
+++ /dev/null
@@ -1,70 +0,0 @@
-<?php
-
-/* Copyright Maximilian Möhring, 2013
-Licensed under the GPL. Read LICENSE for more Information.*/
-
-function print_login($var){
-
- if ($var == LOGOUT_SUCCESSFULL) {
- $logout = "<br><div style='color:red;'>Ausloggen erfolgreich</div>";
- }
- if ($var == LOGIN_PASSWORD) {
- $logout = "<br><div style='color:red;'>Name oder Passwort falsch!</div>";
- }
-
- echo "
-<!doctype html>
-
-<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='/static/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'>
-
- $logout
- <br>
- <form method='post' action='/login' >
- <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 ".$_SESSION["login_attempts"]." attempts. You will be banned for six hours after your login attempts run out.<br>
- <a style='text-decoration:underline;' href='/password_recover'>Passwort vergessen? Klick hier.</a>
-
-
- <br><br>
- <div class='katze' align='center'>
-<pre>
- _ ___ _.--.
- \`.|\..----...-'` `-._.-'_.-'`
- / ' ` , __.--'
- )/' _/ \ `-_, /
- `-''' `''\_,_.-;_.-\_ ',
- _.-'_./ {_.' ; /
- {_.-``-' {_/
-</pre>
- </div>
- </div>
- </div>
-</div>
-";
-}