-
Notifications
You must be signed in to change notification settings - Fork 15
/
create-account.php
67 lines (61 loc) · 2.42 KB
/
create-account.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Create basic account on BitShares Blockchain for free">
<meta name="keywords" content="create, account, bitshares, blockchain, wallet, signup, sign, up, basic, free">
<title>Create Free Account | BitShares Blockchain</title>
<base href="/">
<!-- Styles -->
<link href="assets/css/core.css" rel="stylesheet">
<link href="assets/css/thesaas.css" rel="stylesheet">
<link href="assets/css/style.css" rel="stylesheet">
<!-- Favicons -->
<link rel="apple-touch-icon" href="assets/img/apple-touch-icon.png">
<link rel="icon" href="assets/img/favicon.ico">
<!-- Open Graph Tags -->
<meta property="og:title" content="Create Free Account | BitShares Blockchain">
<meta property="og:description" content="BitShares 2.0 offers a stack of financial services including exchange and banking on a blockchain.">
<meta property="og:image" content="assets/img/og-img.jpg">
<meta property="og:url" content="https://bitshares.org/">
<meta name="twitter:card" content="summary_large_image">
</head>
<body>
<div canvas="container">
<!-- Topbar Navigation Bar Begins-->
<?php require('assets/php/header.php'); ?>
<!-- Top Navigation Bar Ends-->
<!-- Header -->
<header class="header header-inverse inner-headers">
<div class="container text-center">
<div class="row">
<div class="col-12 col-lg-8 offset-lg-2">
<h1>Create Free Account</h1>
<p class="fs-18 opacity-70">Create fully encrypted, personal, named free account.</p>
</div>
</div>
</div>
</header>
<!-- END Header -->
<!-- Main container -->
<?php require('./signup-form.php');?>
<!-- END Main container -->
<!-- Footer -->
<?php require('assets/php/footer.php');?>
<!-- END Footer -->
</div>
<!-- Slide Mobile Menu -->
<?php require('assets/php/mobilemenu.php');?>
<!-- End Slide Mobile Menu -->
<!-- Scripts -->
<script src="assets/js/core.min.js"></script>
<script src="assets/js/script.js"></script>
<!-- End Scripts -->
<!-- Go to Top Button -->
<div id="stop" class="scrollTop bttt-border bttt-round bttt-positionRight bttt-slideFromBottom">
<i class='fa fa-chevron-up'></i>
</div>
<!-- End Go to Top Button -->
</body>
</html>