0
This commit is contained in:
47
src/components/page/verification.vue
Normal file
47
src/components/page/verification.vue
Normal 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>
|
||||
Reference in New Issue
Block a user