You are on page 1of 1

<div id="app">

<v-app id="inspire" class="">


<v-card
class="mx-auto mt-5"
width="50%"
>
<v-row><v-col cols="12"></v-col></v-row>
<v-card-text>
<h3 class="pb-2">Log in</h3>
<v-divider style="background-color:#000000;border-bottom: 1px solid;"></v-
divider>
<v-row class="">
<v-col cols="12" class="pb-0">
<v-text-field
:rules="nameRules"
label="First name"
required
></v-text-field>
</v-col>
<v-col cols="12" class="pt-0">
<v-text-field class="pt-0"
:rules="nameRules"
label="Last name"
required
></v-text-field>
</v-col>
</v-row>

<v-btn
color="warning"
class="mb-5"
dark
block>
Log in
</v-btn>

<v-divider style=" background-color:#000000;border-bottom: 1px solid;"></v-


divider>
<p class="text-end pt-2">
Don't have an account?
<a href="#"
class="text-decoration-none">
Sign up
</a>
<br>
<a href="#"
class="text-decoration-none">
Forgot Password
</a>
</p>
</v-card-text>
</v-card>
</v-app>
</div>

You might also like