UnisKB/ui/src/components/login-container/index.vue

39 lines
751 B
Vue
Raw Normal View History

2023-10-12 08:36:16 +00:00
<template>
<div class="login-form-container">
<div class="login-title">
2024-07-15 10:08:02 +00:00
<div class="logo text-center">
<LogoFull height="45px" />
</div>
2023-12-12 03:32:45 +00:00
<div class="sub-title text-center" v-if="subTitle">
<el-text type="info">{{ subTitle }}</el-text>
</div>
2023-10-12 08:36:16 +00:00
</div>
2023-12-12 03:32:45 +00:00
<el-card class="login-card">
<slot></slot>
</el-card>
2023-10-12 08:36:16 +00:00
</div>
</template>
<script setup lang="ts">
defineOptions({ name: 'LoginContainer' })
defineProps({
title: String,
subTitle: String
})
</script>
<style lang="scss" scope>
.login-form-container {
2023-12-12 03:32:45 +00:00
width: 480px;
2023-10-12 08:36:16 +00:00
.login-title {
2023-12-12 03:32:45 +00:00
margin-bottom: 32px;
2023-10-12 08:36:16 +00:00
.sub-title {
2023-12-12 03:32:45 +00:00
font-size: 16px;
2023-10-12 08:36:16 +00:00
}
}
2023-12-12 03:32:45 +00:00
.login-card {
border-radius: 8px;
padding: 18px;
}
2023-10-12 08:36:16 +00:00
}
</style>