@peterk
Also schon richtig, wobei das so nicht als Code Seite eingebunden werden sollte!
Ich weis nicht, wie gut Du unser CMS kennst, aber DOCTYPE etc ist da alles schon vorhanden!
Von daher würde folgendes vollkommen ausreichen:
|
PHP-Quelltext
|
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
|
<?php
$password = "admin";
if (isset($_POST["password"]) && ($_POST["password"]=="$password")) {
?>
<!-- Start geschützter bereich -->
<p align="center"><br><br><br>
<b>Gratulliere</b><br>Du hast dich erfolgreich eingelogt!</p>
<!-- Ende geschützter bereich -->
<?php
} else {
if (isset($_POST['password']) || $password == "") {
print "<form method="post"><p align="center">Bitte Passwort eingeben zum einlogen!<br>";
print "<input name="password" type="password" size="25" maxlength="10"><input value="Login" type="submit"></p></form>";
}
?>
|