5. Code the views
<!-- very basic sample home page -->
Hello Sign With Wallet World!
Could I get signed in ???
<br />
<a href="/auth/siww">
<img src="../../assets/siww_button.png" style="width: 285px; height: 50px;"
/>
</a>

Last updated
<!-- very basic sample home page -->
Hello Sign With Wallet World!
Could I get signed in ???
<br />
<a href="/auth/siww">
<img src="../../assets/siww_button.png" style="width: 285px; height: 50px;"
/>
</a>

Last updated
<!-- very basic post-login page -->
Welcome user <b>{{param.username}}</b>!
<br />
You are logged-in!
<br />
Authenticated with
<ul>
<li>Connector: <b>{{param.connector}}</b></li>
<li>Blockchain: <b>{{param.blockchain}}</b></li>
<li>Wallet: <b>{{param.wallet_id}}</b></li>
<li>Address: <b>{{param.wallet_address}}</b></li>
</ul>
<br />
Authorizations:
<ul>
{{#each param.authorizations}}
<li>{{name}} - {{#if isValid}}TRUE{{else}}FALSE{{/if}}</li>
{{/each}}
</ul>
<br />
<a href="/auth/logout">
<button
class="signin-btn btn social-btn btn-primary"
style="background-color: #28c4cc;"
tabindex="5"
>
Logout
</button>
</a>