index.html 823 B

1234567891011121314151617181920212223242526272829303132333435
  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 | Home</title>
  7. <link href="static/min.css" rel="stylesheet" type="text/css">
  8. <style>
  9. .hero {
  10. background: #eee;
  11. padding: 20px;
  12. border-radius: 10px;
  13. margin-top: 1em;
  14. }
  15. .hero h1 {
  16. margin-top: 0;
  17. margin-bottom: 0.3em;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. {% include 'navbar.html' %}
  23. <div class="container">
  24. <div class="hero">
  25. <h1>Welcome</h1>
  26. <p>I learnt WEP is so secure that i decided to use it for my session management, but why waste 24bit for the IV? 8 should be enough, no user is going to do that many requests anyway...</p>
  27. <a class="btn btn-b" href="/register">Register</a>
  28. </div>
  29. </div>
  30. </body>
  31. </html>