You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
762 B
53 lines
762 B
<template>
|
|
<view class="">
|
|
<navigation :showBack="true" :bgnum="true">
|
|
<text class="big_title">
|
|
Import by private key
|
|
</text>
|
|
</navigation>
|
|
<view class="main">
|
|
<view class="title1">
|
|
Private key import verification
|
|
</view>
|
|
<view class="title">
|
|
Please keep your private key. Anyone who gets your private key can control your account, including transferring all funds.
|
|
</view>
|
|
|
|
<view class="area"></view>
|
|
|
|
<view class="conf">
|
|
Confirm
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
</template>
|
|
|
|
<script>
|
|
import cont from "@/components/navigation/navigation.vue"
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
};
|
|
</script>
|
|
<style scoped>
|
|
page {
|
|
background: #FAFAFA;
|
|
|
|
}
|
|
</style>
|
|
|
|
<style>
|
|
@import './index.css';
|
|
</style>
|
|
|