Files
general-template/pages/auth/Login.vue
T
Yusron alamsyah 6bb6a1d430 first commit
2026-03-13 10:45:28 +07:00

81 lines
2.8 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<template>
<div class="authentication auth-bg">
<v-container class="pa-3 auth-login">
<v-row class="h-100vh d-flex justify-center align-center">
<v-col cols="12" class="d-flex align-center">
<v-card rounded="md" elevation="10" class="mx-auto">
<div class="pa-3">
<v-row>
<v-col
cols="12"
md="6"
class="border-e px-md-12 px-6 py-md-12 py-6"
>
<div class="d-flex"><LayoutFullLogo /></div>
<h2 class="text-34 my-6">Let's get you signed in two</h2>
<AuthBoxedLoginForm />
<h6
class="text-16 text-medium-emphasis d-flex align-center mt-6"
>
Dont have an account yet?
<v-btn
class="pl-0 text-primary text-16 opacity-1 pl-2"
height="auto"
to="/auth/register2"
variant="plain"
>Sign Up Now</v-btn
>
</h6>
</v-col>
<v-col cols="12" md="6" class="d-md-flex d-none">
<div
class="d-flex flex-column justify-center px-md-12 px-6 h-100 align-center"
>
<div>
<img
src="@/assets/images/backgrounds/login-side.png"
alt="matdash-img"
width="300"
/>
</div>
<v-carousel
:continuous="false"
:show-arrows="false"
cycle
height="200"
hide-delimiter-background
class="text-center mt-4"
>
<v-carousel-item
v-for="item in AuthCuroselData"
:key="item.title"
>
<h3 class="text-h3 mb-4">{{ item.title }}</h3>
<p class="textSecondary text-body-1">
{{ item.subtitle }}
</p>
<v-btn color="primary" class="mt-4" flat
>Learn More</v-btn
>
</v-carousel-item>
</v-carousel>
</div>
</v-col>
</v-row>
</div>
</v-card>
</v-col>
</v-row>
</v-container>
</div>
</template>
<script setup lang="ts">
import { AuthCuroselData } from "@/_mockApis/components/pages/auth";
/*-For Set Blank Layout-*/
definePageMeta({
layout: "blank"
});
</script>