summaryrefslogtreecommitdiffstats
path: root/front
diff options
context:
space:
mode:
authorDashie <dashie@sigpipe.me>2019-12-16 14:00:58 +0100
committerDashie <dashie@sigpipe.me>2019-12-16 14:00:58 +0100
commitdaf800cb315697cc20b7f8fba9e6bb75b892c690 (patch)
treeb0921e0897afc8297f9b4649b2698923f5588eab /front
parent164c2f60abd875d73bb981ac14d609f0a51803da (diff)
Fix blinky thingy
Diffstat (limited to 'front')
-rw-r--r--front/src/components/login_form/login_form.vue13
1 files changed, 9 insertions, 4 deletions
diff --git a/front/src/components/login_form/login_form.vue b/front/src/components/login_form/login_form.vue
index 7870e327..7821e5b2 100644
--- a/front/src/components/login_form/login_form.vue
+++ b/front/src/components/login_form/login_form.vue
@@ -1,13 +1,18 @@
<template>
<div>
<div v-if="needsEmailConfirmation" class="row justify-content-md-center">
- <b-alert v-translate variant="warning" show>
- An email has been sent to confirm your account, you cannot login before this is done.
+ <b-alert variant="warning" show>
+ <translate>
+ An email has been sent to confirm your account, you cannot login before this is done.
+ </translate>
</b-alert>
</div>
+
<div v-if="accountIsConfirmed" class="row justify-content-md-center">
- <b-alert v-translate variant="success" show>
- Your account has been successfully activated, you can login.
+ <b-alert variant="success" show>
+ <translate>
+ Your account has been successfully activated, you can login.
+ </translate>
</b-alert>
</div>