index.html 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <title>Misago</title>
  7. <meta name="description" content="">
  8. <meta name="viewport" content="width=device-width, initial-scale=1">
  9. {{content-for 'head'}}
  10. <link rel="stylesheet" href="misago/css/vendor.css">
  11. <link rel="stylesheet" href="misago/css/misago.css">
  12. {{content-for 'head-footer'}}
  13. </head>
  14. <body>
  15. {{content-for 'body'}}
  16. <section id="main"></section>
  17. <form id='hidden-login-form' method="post" action="/login/" style="display: none;">
  18. <input name="csrfmiddlewaretoken" type="hidden" value="">
  19. <input name="redirect_to" type="text">
  20. <input name="username" type="text">
  21. <input name="password" type="password">
  22. <input type="submit" id="signin-button" value="Sign in">
  23. </form>
  24. <form id='hidden-logout-form' method="post" action="/logout/" style="display: none;">
  25. <input name="csrfmiddlewaretoken" type="hidden" value="">
  26. <input type="submit" id="signin-button" value="Log out">
  27. </form>
  28. <script src="http://localhost:8000/django-i18n.js"></script>
  29. <script src="http://localhost:8000/misago-preload-data.js"></script>
  30. <script>
  31. MisagoData.staticUrl = '';
  32. </script>
  33. <script src="misago/js/vendor.js"></script>
  34. <script src="misago/js/misago.js"></script>
  35. {{content-for 'body-footer'}}
  36. </body>
  37. </html>