blockchain/views/wallet.ejs
2022-01-26 19:20:35 +00:00

63 lines
3.6 KiB
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title><%= title %></title>
<!--<link rel='stylesheet' href='/stylesheets/style.css' />-->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-wEmeIV1mKuiNpC+IOBjI7aAzPcEZeedi5yW5f2yOq55WWLwNGmvvx4Um1vskeMj0" crossorigin="anonymous">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>
<meta name="theme-color" content="#7952b3">
<link href="/stylesheets/dashboard.css" rel="stylesheet">
</head>
<body>
<%- include('header.ejs') %>
<div class="container-fluid">
<div class="row">
<%- include('sidebar.ejs') %>
<main class="col-md-9 ms-sm-auto col-lg-10 px-md-4">
<%- include('breadcrumb.ejs', {breadcrumb: breadcrumb}) %>
<div class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center pt-3 pb-2 mb-3 border-bottom">
<h2><%= title %></h2>
</div>
<div class="card-group">
<div class="card">
<div class="card-header">New Wallet</div>
<div class="card-body">
<h5 class="card-title">Create a New Wallet</h5>
<p class="card-text">If you do not already have a wallet, you can create a new one!</p>
<p class="card-text">Process of creation of new wallet is simple. Just visit the link below and a new wallet will be generated for you. You can then save it to jour computer and use it next time you visit this page.</p>
<p><a href="/wallet/new">New Wallet</a></p>
</div>
</div>
<div class="card">
<div class="card-header">Open Wallet</div>
<div class="card-body">
<h5 class="card-title">Use Existing Wallet</h5>
<p class="card-text">If you already have a wallet, it is easy to open it.</p>
<p class="card-text">Visit link below to open your wallet file. It is easy and secure.</p>
<p><a href="/wallet/open">Open Wallet</a></p>
</div>
</div>
<div class="card">
<div class="card-header">Bring Your Own</div>
<div class="card-body">
<h5 class="card-title">Create Your Own Wallet</h5>
<p class="card-text">Security is hard to get right. Sometimes it is difficult to trust the process of creation of wallet to an online web application.</p>
<p class="card-text">Luckily you can create your own wallet using instructions here. Follow the link to find out how.</p>
<p><a href="/wallet/how-to">Create Your Own</a></p>
</div>
</div>
</div>
</main>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-p34f1UUtsS3wqzfto5wAAmdvj+osOnFyQFpp4Ua3gs/ZVWx6oOypYoCJhGGScy+8" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons@4.28.0/dist/feather.min.js" integrity="sha384-uO3SXW5IuS1ZpFPKugNNWqTZRRglnUJK6UAZ/gxOX80nxEkN9NcGZTftn6RzhGWE" crossorigin="anonymous"></script><script src="https://cdn.jsdelivr.net/npm/chart.js@2.9.4/dist/Chart.min.js" integrity="sha384-zNy6FEbO50N+Cg5wap8IKA4M/ZnLJgzc6w2NqACZaK0u0FXfOWRRJOnQtpZun8ha" crossorigin="anonymous"></script><script src="/javascripts/dashboard.js"></script>
</body>
</html>