home.html 570 B

12345678910111213141516171819
  1. <pstm-uri>/</pstm-uri>
  2. <pstm-template>main</pstm-template>
  3. <p>
  4. Counter: <span stm-text="counter.value">0</span>
  5. <button stm-action="counter.bump">Bump +1</button>
  6. </p>
  7. <div stm-if="auth != null">
  8. <p>Welcome back, <strong stm-text="auth.name">user</strong>.</p>
  9. <button stm-action="auth.logout">Log out</button>
  10. </div>
  11. <div stm-else>
  12. <p>Sign in to personalise this page.</p>
  13. <form stm-action="page.login">
  14. <label>Name <input name="name" placeholder='try "admin"'></label>
  15. <button type="submit">Log in</button>
  16. </form>
  17. </div>