user.html 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta name="description" content="A layout example with a side menu that hides on mobile, just like the Pure website.">
  7. <title>Evil Corp | Home</title>
  8. <link rel="stylesheet" href="/static/pure.css">
  9. <link rel="stylesheet" href="/static/menu.css">
  10. </head>
  11. <body>
  12. <div id="layout">
  13. {% include 'nav.html' %}
  14. <div id="main">
  15. <div class="header">
  16. <h1>User Profile</h1>
  17. <h2>Welcome back <italic>{{ username }}</italic></h2>
  18. </div>
  19. <div class="content">
  20. <h2 class="content-subhead">Congratulations</h2>
  21. <p>
  22. Here's your second flag: <strong>{{ flag2 }}</strong>
  23. </p>
  24. </div>
  25. <div class="content">
  26. <h2 class="content-subhead">User options</h2>
  27. <p>
  28. Unfortunately we have yet to implement user functionalities. If you are an admin, please login as such to change site configuration.
  29. </p>
  30. </div>
  31. </div>
  32. </div>
  33. <script src="/static/ui.js"></script>
  34. </body>
  35. </html>