Advertisement
Guest User

login.html

a guest
Apr 8th, 2018
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta name="content-type" content="text/html; charset=utf-8" />
  5. <link rel="stylesheet" href="style.css">
  6. <title>Login</title>
  7. <style>
  8. html {
  9. background-image: url(bg.png);
  10. }
  11.  
  12. </style>
  13.  
  14. </head>
  15. <body>
  16.  
  17. <div>
  18. <!-- START OF LOGIN-FORM -->
  19. <form action="login.php" method="post">
  20. <p><label><input type="text" name="user" placeholder="Benutzername..."/> </label></p>
  21. <p><label><input type="password" name="password" placeholder="Passwort..."/></label></p>
  22.  
  23.  
  24. <p><label><input type="submit" name="login" value="Anmelden" /></label></p>
  25.  
  26. </form>
  27. <!-- END OF LOGIN-FORM -->
  28. </div>
  29.  
  30. </body>
  31. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement