Guest User

Untitled

a guest
Nov 2nd, 2016
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.32 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Authentifizieren</title>
  4.  
  5. </head>
  6. <body>
  7. <?php
  8.     $username = $_POST["username"];
  9.     $passwort = $_POST["passwort"];
  10.  
  11.     if( ($username=="welt101" AND $password=="welt101")
  12.     {
  13.     echo "Willkommen im Internen Bereich!";
  14.     }
  15.     else
  16.     {
  17.     echo "Log-In gescheitert!";
  18.     }
  19. ?>
  20. </body>
  21. </html>
Add Comment
Please, Sign In to add comment