🔧
This commit is contained in:
@@ -1,13 +1,17 @@
|
||||
<script setup>
|
||||
// import { Head } from "@inertiajs/vue3";
|
||||
import { Head } from "@inertiajs/vue3";
|
||||
|
||||
const props = defineProps(["user"]);
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<!-- <Head title="User Profile" /> -->
|
||||
<Head>
|
||||
<title>Login</title>
|
||||
</Head>
|
||||
|
||||
<div class="container">
|
||||
<h2 class="font-semibold text-xl text-gray-800 leading-tight">Welcome to {{ $page.props.appName }}</h2>
|
||||
<h3 class="font-semibold text-xl text-gray-800 leading-tight">Please, login in to begin</h3>
|
||||
</div>
|
||||
|
||||
<h2 class="font-semibold text-xl text-gray-800 leading-tight">Profile</h2>
|
||||
|
||||
<div class="py-12">Hello, {{ user.name }}</div>
|
||||
</template>
|
||||
|
||||
Reference in New Issue
Block a user