This commit is contained in:
徐哼唧L
2022-12-09 16:18:12 +08:00
parent dc4d87a990
commit 5ed3073b6e
130 changed files with 41608 additions and 2013 deletions

View File

@@ -0,0 +1,47 @@
<template>
<div class="login-wrap">
<p class="yuju">
You are almost done.
<br>
Please click on the link sent to your email inbox to complete your registration.
</p>
</div>
</template>
<script>
export default {
data: function() {
return {
};
},
created: function() {
},
methods: {
}
};
</script>
<style scoped>
.login-wrap {
width: 100%;
height: 100%;
background-image: url(../../assets/img/login-bg.jpg);
background-size: cover;
}
.yuju{
position: fixed;
top: 44%;
left: 50%;
width: 700px;
margin-left: -350px;
line-height: 34px;
background: #fff;
border-radius: 10px;
padding: 20px;
font-size: 20px;
}
</style>