Advertisement
Guest User

Untitled

a guest
May 26th, 2023
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Login</title>
  6. <link href="style.css" rel="stylesheet" type="text/css">
  7. </head>
  8. <body>
  9. <div class="login">
  10. <h1>Login</h1>
  11. <form action="auth.php" method="post">
  12. <label for="surname">
  13. <i class="fas fa-user"></i>
  14. </label>
  15. <input type="text" name="surname" placeholder="surname" id="surname" required>
  16. <label for="password">
  17. <i class="fas fa-lock"></i>
  18. </label>
  19. <input type="password" name="password" placeholder="Password" id="password" required>
  20. <input type="submit" value="Login">
  21. </form>
  22. </div>
  23. </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement