Here is an example of an HTML cell that presents a logout button:
<div>
<style scoped>
.button-logout{
background: rgb(102, 176, 132); /* this is a green */
color: white;
border-radius: 4px;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
width: 23em;
font-size: 2em;
height: 3em;
cursor: pointer;
cursor: hand;
}
</style>
<button class="button-logout" onclick="AwareApp.logout()">Logout</button>
</div>