Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

30 lignes
575B

  1. $def with (nav, login_form, message)
  2. <head>
  3. <title>Beelance2</title>
  4. <meta charset="utf-8">
  5. <link rel="stylesheet" type="text/css" href="static/stylesheet.css">
  6. <link rel="shortcut icon" type="image/png" href="static/honeybee.png"/>
  7. </head>
  8. <body>
  9. $:nav
  10. $if not session.username:
  11. <h3>Log In</h3>
  12. <form method="POST">
  13. $:csrf_field()
  14. $:login_form.render()
  15. </form>
  16. $else:
  17. <h1>Logged in as $session.username</h1>
  18. <p>$:message</p>
  19. <img src="static/honeybee.png" alt="Honeybee">
  20. </body>