home.html 791 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <pstm-uri>/</pstm-uri>
  5. <pstm-template>main</pstm-template>
  6. </head>
  7. <body>
  8. <!-- A component (fragment): its <head> merges into the page head and its
  9. body is materialised into the wrapping element. -->
  10. <pstm-fragment name="counter-card" />
  11. <div stm-if="auth != null">
  12. <p>Welcome back, <strong stm-text="auth.name">user</strong>.</p>
  13. <p><a href="/dashboard">Dashboard</a> · <button stm-action="auth.logout">Log out</button></p>
  14. </div>
  15. <div stm-else>
  16. <p>Sign in to personalise this page.</p>
  17. <form stm-action="page.login">
  18. <label>Name <input name="name" placeholder='try "admin"'></label>
  19. <button type="submit">Log in</button>
  20. </form>
  21. </div>
  22. </body>
  23. </html>