Fix a navigation bar option I neglected to button-ify.

This commit is contained in:
Cory McWilliams 2024-06-23 11:47:12 -04:00
parent 3630cdbfe0
commit 21cf503a59

View File

@ -191,8 +191,9 @@ class TfNavigationElement extends LitElement {
class="w3-bar-item w3-button w3-border" class="w3-bar-item w3-button w3-border"
id="logout" id="logout"
@click=${self.logout} @click=${self.logout}
>Logout ${this.credentials.session.name}</button
> >
Logout ${this.credentials.session.name}
</button>
</div> </div>
</div> </div>
`; `;
@ -203,15 +204,16 @@ class TfNavigationElement extends LitElement {
return html` return html`
<link type="text/css" rel="stylesheet" href="/static/w3.css" /> <link type="text/css" rel="stylesheet" href="/static/w3.css" />
<button <button
class="w3-bar-item w3-right w3-cyan" class="w3-bar-item w3-button w3-right w3-cyan"
id="logout" id="logout"
@click=${self.logout} @click=${self.logout}
>Logout ${this.credentials.session.name}</button
> >
Logout ${this.credentials.session.name}
</button>
<button <button
id="create_identity" id="create_identity"
@click=${this.create_identity} @click=${this.create_identity}
class="w3-button w3-mobile w3-cyan w3-right" class="w3-button w3-mobile w3-red w3-right"
> >
Create an Identity Create an Identity
</button> </button>
@ -222,8 +224,9 @@ class TfNavigationElement extends LitElement {
class="w3-bar-item w3-button w3-right w3-cyan" class="w3-bar-item w3-button w3-right w3-cyan"
id="logout" id="logout"
@click=${self.logout} @click=${self.logout}
>Logout ${this.credentials.session.name}</button
> >
Logout ${this.credentials.session.name}
</button>
`; `;
} }
} else { } else {