58 lines
997 B
Vue
58 lines
997 B
Vue
<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> -->
|
|
<p class="yuju">
|
|
Congratulations!
|
|
<br>
|
|
Your account registration has been successfully completed. Please log in by <a @click="tologin" type="text">clicking here</a>.
|
|
</p>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data: function() {
|
|
return {
|
|
|
|
|
|
};
|
|
},
|
|
created: function() {
|
|
|
|
},
|
|
methods: {
|
|
tologin(){
|
|
this.$router.push({
|
|
path:'/login'
|
|
})
|
|
}
|
|
}
|
|
};
|
|
</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;
|
|
}
|
|
.yuju>a{color: #66b1ff; cursor: pointer;}
|
|
</style>
|