18 lines
397 B
Vue
18 lines
397 B
Vue
<script setup>
|
|
import { Head } from "@inertiajs/vue3";
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<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>
|
|
|
|
|
|
</template>
|