25 lines
981 B
Vue
25 lines
981 B
Vue
<script setup lang="ts">
|
|
import { ref } from 'vue';
|
|
const checkbox = ref(true);
|
|
</script>
|
|
|
|
<template>
|
|
<v-row class="d-flex mb-3">
|
|
<v-col cols="12">
|
|
<v-label class="font-weight-bold mb-1">Name</v-label>
|
|
<v-text-field variant="outlined" density="compact" hide-details color="primary"></v-text-field>
|
|
</v-col>
|
|
<v-col cols="12">
|
|
<v-label class="font-weight-bold mb-1">Email Address</v-label>
|
|
<v-text-field variant="outlined" density="compact" type="email" hide-details color="primary"></v-text-field>
|
|
</v-col>
|
|
<v-col cols="12">
|
|
<v-label class="font-weight-bold mb-1">Password</v-label>
|
|
<v-text-field variant="outlined" type="password" density="compact" hide-details color="primary"></v-text-field>
|
|
</v-col>
|
|
<v-col cols="12" >
|
|
<v-btn to="/" color="primary" size="large" block flat>Sign up</v-btn>
|
|
</v-col>
|
|
</v-row>
|
|
</template>
|