home.html 880 B

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