HEX
Server: nginx/1.28.3
System: Linux lightweb-s1 5.15.0-173-generic #183-Ubuntu SMP Fri Mar 6 13:29:34 UTC 2026 x86_64
User: drdrivek-71 (1047)
PHP: 8.3.30
Disabled: NONE
Upload Files
File: /home/dnlightw-124/dn.lightweb.kr/themes/prompt/Pages/TermsOfService.vue
<script setup>
import { Head } from '@inertiajs/vue3';
import AuthenticationCardLogo from '@/Components/AuthenticationCardLogo.vue';
import {__} from "@/lib/translate";

defineProps({
    terms: String,
});
</script>

<template>
    <Head :title="__('Terms of Service')" />

    <div class="text-gray-900  antialiased">
        <div class="pt-4 bg-gray-100 ">
            <div class="min-h-screen flex flex-col items-center pt-6 sm:pt-0">
                <div>
                    <AuthenticationCardLogo />
                </div>

                <div class="w-full sm:max-w-2xl mt-6 p-6 bg-white  shadow-md overflow-hidden sm:rounded-lg prose " v-html="terms" />
            </div>
        </div>
    </div>
</template>