mirror of https://github.com/doccano/doccano.git
pythondatasetsactive-learningtext-annotationdatasetnatural-language-processingdata-labelingmachine-learningannotation-tool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.4 KiB
53 lines
1.4 KiB
<template>
|
|
<v-app id="inspire">
|
|
<v-content>
|
|
<v-container class="fill-height" fluid>
|
|
<v-row align="center" justify="center">
|
|
<v-col cols="12" sm="8" md="4">
|
|
<login-form />
|
|
<!--
|
|
<v-card class="elevation-12">
|
|
<v-toolbar color="primary" dark flat>
|
|
<v-toolbar-title>Login form</v-toolbar-title>
|
|
</v-toolbar>
|
|
<v-card-text>
|
|
<v-form>
|
|
<v-text-field
|
|
label="Login"
|
|
name="login"
|
|
prepend-icon="person"
|
|
type="text"
|
|
/>
|
|
<v-text-field
|
|
id="password"
|
|
label="Password"
|
|
name="password"
|
|
prepend-icon="lock"
|
|
type="password"
|
|
/>
|
|
</v-form>
|
|
</v-card-text>
|
|
<v-card-actions>
|
|
<div class="flex-grow-1" />
|
|
<v-btn color="primary">
|
|
Login
|
|
</v-btn>
|
|
</v-card-actions>
|
|
</v-card>
|
|
-->
|
|
</v-col>
|
|
</v-row>
|
|
</v-container>
|
|
</v-content>
|
|
</v-app>
|
|
</template>
|
|
|
|
<script>
|
|
import LoginForm from '@/components/organisms/LoginForm'
|
|
|
|
export default {
|
|
components: {
|
|
LoginForm
|
|
}
|
|
}
|
|
</script>
|