-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
120 lines (110 loc) · 4.77 KB
/
index.html
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>FusedVR</title>
<link rel="icon" type="image/x-icon" href="assets/img/logo/logo.png">
<!-- all css in here -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/responsive.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.1/jquery.modal.min.css" />
<script src="assets/auth/web3modal.js"></script>
</head>
<body>
<!-- header_area html start in here -->
<div class="header_area">
<div class="container-fluid">
<div class="row align-items-center">
<div class="col-md-6">
<div class="main_logo">
<a href="index.html">
<img src="assets/img/logo/logo.png" alt="main-logo">
FusedVR
</a>
</div>
</div>
<div class="col-md-6">
<div class="header_menu">
<nav>
<ul>
<li><a href="https://crypto.fusedvr.com/docs">Documentation</a></li>
<li><a href="https://api-crypto.fusedvr.com" target="_blank">APIs</a></li>
</ul>
</nav>
</div>
</div>
</div>
</div>
</div>
<!-- header html end in here -->
<!-- form_area html start in here -->
<div class="form_area login">
<div class="container">
<div class="row">
<div class="col-12">
<form action="">
<div class="form_inner_text">
<div class="form_text_tit">
<img src="assets/img/logo/logo.png" alt="">
<h1>FusedVR Chain Auth</h1>
</div>
<p>Input the Link Code to authenticate your wallet and prove ownership of tokens & NFTS to the requesting game</p>
</div>
<div class="sing_input">
<label for="code">Input Game Link Code</label>
<input type="text" id="code-input" placeholder="Input Code">
</div>
<div class="sing_input">
<button id="auth-button" type="button">Authenticate with Web3 Wallet</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<!-- form_area html end in here -->
<div id="alert" class="modal" tabindex="-1" role="dialog">
<div class="modal-header">
<h5 class="modal-title">Title</h5>
<a href="#close" rel="modal:close">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</a>
</div>
<div class="modal-body">
</div>
<div class="modal-footer">
<a href="#close-modal" rel="modal:close"><button type="button" class="btn btn-secondary">Close</button></a>
</div>
</div>
<!-- footer_area html start in here -->
<footer>
<div class="footer_area">
<div class="container-fluid">
<div class="row">
<div class="col-12">
<div class="fotter_widget text-right">
<ul class="footer_social">
<li><a href="#"><img src="assets/img/icon/twitter.png" alt=""></a></li>
<li><a href="#"><img src="assets/img/icon/linkined.png" alt=""></a></li>
<li><a href="#"><img src="assets/img/icon/youtube.png" alt=""></a></li>
</ul>
<h6>© FusedVR, 2022</h6>
</div>
</div>
</div>
</div>
</div>
</footer>
<!-- footer_area html end in here -->
<!-- main & plugines js -->
<script src="https://www.unpkg.com/[email protected]/dist/jquery.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://unpkg.com/[email protected]/jquery.modal.min.js"></script>
</body>
</html>