| 12345678910111213141516171819 |
- <pstm-uri>/</pstm-uri>
- <pstm-template>main</pstm-template>
- <p>
- Counter: <span stm-text="counter.value">0</span>
- <button stm-action="counter.bump">Bump +1</button>
- </p>
- <div stm-if="auth != null">
- <p>Welcome back, <strong stm-text="auth.name">user</strong>.</p>
- <button stm-action="auth.logout">Log out</button>
- </div>
- <div stm-else>
- <p>Sign in to personalise this page.</p>
- <form stm-action="page.login">
- <label>Name <input name="name" placeholder='try "admin"'></label>
- <button type="submit">Log in</button>
- </form>
- </div>
|