From 80f4eed6464062e5f4a3ba47792c499bb4258d89 Mon Sep 17 00:00:00 2001
From: 778a69cd <778a69cd@potsda.mn>
Date: Wed, 15 Mar 2023 19:24:34 +0100
Subject: [PATCH] warn users when creating a user account that they have to
 create a group later

Co-authored-by: unkonkret <unkonkret@systemli.org>
---
 js/src/views/Account/Register.vue | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/js/src/views/Account/Register.vue b/js/src/views/Account/Register.vue
index 07db71e0d..d6a28d444 100644
--- a/js/src/views/Account/Register.vue
+++ b/js/src/views/Account/Register.vue
@@ -24,7 +24,13 @@
               @input="autoUpdateUsername($event)"
             />
           </b-field>
-
+          <p style="color: red">
+            {{
+              $t(
+                "Attention! The username below is unique! If you want to create a group with the same name, change your username below now as you can't later on. (With your group name you'll be able to link to your group directly eg. fomobremen.info/@groupname)"
+              )
+            }}
+          </p>
           <b-field
             :label="$t('Username')"
             :type="errors.preferred_username ? 'is-danger' : null"