login.html 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <title>HM0x14 - WE(P)B | Login</title>
  7. <link href="static/min.css" rel="stylesheet" type="text/css">
  8. <style>
  9. input {
  10. border: 1px solid #ccc;
  11. box-shadow: inset 0 1px 3px #ddd;
  12. border-radius: 2px;
  13. vertical-align: middle;
  14. -webkit-box-sizing: border-box;
  15. -moz-box-sizing: border-box;
  16. box-sizing: border-box;
  17. width: 240px;
  18. max-width: 100%;
  19. padding: 0.5em 0.6em;
  20. margin-bottom: 0.5em;
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. {% include 'navbar.html' %}
  26. <div class="container">
  27. <div class="row">
  28. <div class="col c6">
  29. <h1>Login</h1>
  30. <hr>
  31. <form method="post" action="">
  32. <input type="text" name="username" id="username" placeholder="Username">
  33. <input type="password" name="password" id="password" placeholder="Password">
  34. <input type="submit" class="btn btn-a btn-sm smooth" value="Login">
  35. </form>
  36. </div>
  37. </div>
  38. </div>
  39. </body>
  40. </html>