Skip to content
Snippets Groups Projects
Commit 4289a1f1 authored by Neuber, Eugen Ramon's avatar Neuber, Eugen Ramon :speech_balloon: Committed by Reiter, Christoph
Browse files

Use official login button (incl. hover)

parent 8028087f
No related branches found
No related tags found
No related merge requests found
...@@ -293,7 +293,10 @@ class VPUAuth extends LitElement { ...@@ -293,7 +293,10 @@ class VPUAuth extends LitElement {
renderLoggedOut() { renderLoggedOut() {
return html` return html`
<button id="login-button" @click="${this.login}" class="button main-button"> <button id="login-button" @click="${this.login}" class="button main-button">
<vpu-icon name="login"></vpu-icon> ${i18n.t('login')} <img src="/local/vpu-auth/icon_key_normal_tugprod.png"
onmouseover="this.setAttribute('src', '/local/vpu-auth/icon_key_hover_tugprod.png');"
onmouseout="this.setAttribute('src', '/local/vpu-auth/icon_key_normal_tugprod.png');"
title="${i18n.t('login')}" alt="${i18n.t('login')}">
</button> </button>
`; `;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment