mirror of
https://hubproxy.babadafafafafa.cn/https://github.com/1Panel-dev/1Panel.git
synced 2026-09-20 08:03:55 +08:00
55 lines
1.4 KiB
Vue
55 lines
1.4 KiB
Vue
<template>
|
|
<div class="not-container">
|
|
<img src="@/assets/images/unsafe.svg" class="not-img" alt="404" />
|
|
<div class="not-detail">
|
|
<h2>{{ $t('commons.login.notSafe') }}</h2>
|
|
<h4>{{ $t('commons.login.errIP1') }}</h4>
|
|
<div>
|
|
<h4>{{ $t('commons.login.errHelper') }} 1pctl reset ips</h4>
|
|
<div class="float-left cursor-pointer">
|
|
<el-icon color="#409EFC" class="ml-1.5 mt-8" :size="18" @click="copyText('1pctl reset ips')">
|
|
<DocumentCopy />
|
|
</el-icon>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts" name="404">
|
|
import { copyText } from '@/utils/clipboard';
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.not-container {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100%;
|
|
.not-img {
|
|
margin-top: 300px;
|
|
}
|
|
.not-detail {
|
|
margin-top: 300px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
h2,
|
|
h4 {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
h2 {
|
|
font-size: 60px;
|
|
color: #434e59;
|
|
}
|
|
h4 {
|
|
margin: 30px 0 20px;
|
|
float: left;
|
|
font-size: 19px;
|
|
font-weight: normal;
|
|
color: #848587;
|
|
}
|
|
}
|
|
}
|
|
</style>
|