provision script fixes, flash the server creds to the user on server create

This commit is contained in:
2025-03-30 12:37:34 +00:00
parent 435a7ac1e3
commit 5ba1ac9c92
5 changed files with 21 additions and 1 deletions

View File

@@ -18,6 +18,13 @@ const props = defineProps({
<AppLayout>
<div class="flex h-full flex-1 flex-col gap-4 rounded-xl p-4">
{{ server }}
<div v-if="$page.props.flash?.server_credentials" class="p-5">
<div class="mb-4 text-sm font-medium text-gray-900 dark:text-white">
WILL NOT BE SHOWN AGAIN:
{{ $page.props.flash.server_credentials }}
</div>
</div>
</div>
</AppLayout>
</template>