We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02afbe0 commit 3b3e3e3Copy full SHA for 3b3e3e3
1 file changed
resources/js/views/LoginView.vue
@@ -3,11 +3,13 @@ import AuthHeader from '@/components/headers/AuthHeader.vue';
3
import LayoutAuth from '@/layouts/LayoutAuth.vue';
4
import LoginForm from '@/components/forms/LoginForm.vue';
5
import AuthCard from '@/components/cards/AuthCard.vue';
6
+
7
+const loginMessage = import.meta.env.VITE_LOGIN_MESSAGE;
8
</script>
9
10
<template>
11
<LayoutAuth>
- <AuthHeader>Enter your email and password below to log in</AuthHeader>
12
+ <AuthHeader class="whitespace-pre-wrap">{{ loginMessage ?? 'Enter your email and password below to log in' }}</AuthHeader>
13
<AuthCard>
14
<LoginForm />
15
</AuthCard>
0 commit comments