-
-
Gold in Bank
-
๐ช {{ bankStore.account.goldBalance }}
+
+
+
๐ฅ Login Streak
+
+
{{ playerStore.profile.loginStreak }}
+
consecutive days
-
No bank account yet
-
- Go to Bank โ
-
-
-
-
-
โก Quick Actions
-
-
- โ๏ธ Battle Arena
-
-
- ๐งน Broom Racing
-
-
- ๐ค Fellowship
-
-
- ๐ Leaderboard
-
-
- ๐ Items
-
-
- โก Admin Panel
-
+
+
+
โก Quick Actions
+
+
+ โ๏ธ Battle Arena
+
+
+ ๐งน Broom Racing
+
+
+ ๐ค Fellowship
+
+
+ ๐ Leaderboard
+
+
+ ๐ Items
+
+
+ ๐ Houses
+
+
+ โก Admin Panel
+
+
diff --git a/frontend/src/views/RegisterView.vue b/frontend/src/views/RegisterView.vue
index 95a0c83..f89bed1 100644
--- a/frontend/src/views/RegisterView.vue
+++ b/frontend/src/views/RegisterView.vue
@@ -10,6 +10,7 @@ const username = ref('')
const email = ref('')
const password = ref('')
const referralCode = ref('')
+const house = ref('')
const error = ref('')
const loading = ref(false)
@@ -22,6 +23,7 @@ async function handleRegister() {
email: email.value,
password: password.value,
referralCode: referralCode.value || undefined,
+ house: house.value || undefined,
})
router.push('/dashboard')
} catch (e: unknown) {
@@ -94,6 +96,21 @@ async function handleRegister() {
/>