feat: add kc logo

This commit is contained in:
kittentm 2026-07-29 04:03:03 +02:00
commit 3a6a5379d0
Signed by: kitten
GPG key ID: 394B4EABE4405A83
2 changed files with 68 additions and 1 deletions

View file

@ -41,7 +41,11 @@ const handleLogin = () => {
</p>
<button type="button" class="btn-login-action" :disabled="!isInitialized || isLoggingIn" @click="handleLogin">
<span v-if="isLoggingIn" class="spinner sm btn-spinner"></span>
<span>{{ isLoggingIn ? 'Redirecting...' : 'Login with Keycloak' }}</span>
<img v-else src="/keycloak/favicon.svg" alt="Keycloak Logo"
style="width: 18px; height: 18px; margin-right: 8px; vertical-align: middle;" />
<span style="vertical-align: middle;">
{{ isLoggingIn ? 'Redirecting...' : 'Login with Keycloak' }}
</span>
</button>
</div>
</section>