Advertisement
Guest User

index

a guest
Nov 17th, 2019
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <link rel="stylesheet" href="style.css" type="text/css">
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8. <title>My Website</title>
  9. </head>
  10. <body>
  11. <section id="login">
  12. <div class="container">
  13. <div class="field">
  14. <h1>Log in</h1>
  15. <form action="#" method="GET">
  16. <input type="text" name="usr_name_email" placeholder="E-mail / username" autofocus>
  17. <br>
  18. <input type="password" name="usr_pass" placeholder="password">
  19. <p><a href="#">Forgot password?</a></p>
  20. <button type="submit" name="usr_submit">Log in</button>
  21. <hr>
  22. <div class="new">
  23. <p>Don't have account?<a href="../signup/index.html"> Create new account</a></p>
  24. </div>
  25. </form>
  26. </div>
  27. </div>
  28. </section>
  29. </body>
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement