diff --git a/frontend/src/views/profile/ProfilePage.vue b/frontend/src/views/profile/ProfilePage.vue
index fddda88..8608127 100644
--- a/frontend/src/views/profile/ProfilePage.vue
+++ b/frontend/src/views/profile/ProfilePage.vue
@@ -256,12 +256,18 @@ function downloadQRCode() {
{{ t('payment-information') }}
-
-
+
+
+ {{ t('stripeStatus') }}
+
+ {{ creatorProfileStore.creator.acceptDonation ? t('configured') : t('notConfigured') }}
+
+
+
+
@@ -516,6 +522,30 @@ function downloadQRCode() {
@apply hover:bg-hutopySecondary;
@apply transition-colors duration-300;
}
+
+.stripe-status {
+ @apply flex flex-row items-center w-full p-3 rounded-lg;
+ @apply bg-hSurface;
+ @apply cursor-default;
+ @apply transition-colors duration-300;
+}
+
+.stripe-status .value {
+ @apply text-hOnBackground flex-1 text-center;
+ @apply flex items-center justify-center;
+}
+
+.stripe-status .value.configured {
+ @apply text-green-500;
+}
+
+.configure-stripe-button {
+ @apply flex items-center justify-center gap-2 px-4 py-2 rounded-lg;
+ @apply bg-hutopyPrimary text-hOnPrimary;
+ @apply hover:bg-hutopySecondary;
+ @apply transition-colors duration-300;
+ @apply ml-4;
+}