-
Notifications
You must be signed in to change notification settings - Fork 0
/
createapp.html
134 lines (123 loc) · 5.89 KB
/
createapp.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!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>
<!-- 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" />
</head>
<body>
<div class="offcanvas-overly"></div>
<div class="side_bar_menu">
<div class="side_bar_logo">
<a href="">
<img src="assets/img/logo/logo.png" alt="">
<b>FusedVR</b>
</a>
</div>
<div class="slide_bar_menu">
<ul>
<li><a href="/dashboard.html">
<img src="assets/img/icon/apps.png" alt="">
Apps
</a></li>
<li><a href="/billing.html">
<img src="assets/img/icon/billing.png" alt="">
Billing
</a></li>
<li><a href="https://github.com/FusedVR">
<img src="assets/img/icon/sdks.png" alt="">
SDKs
</a></li>
<li><a href="https://crypto.fusedvr.com/docs/">
<img src="assets/img/icon/Magazine.png" alt="">
Docs
</a></li>
</ul>
</div>
</div>
<div class="dashboard_body">
<div class="container-fluid">
<div class="row">
<div class="col-12">
<div class="head_dashboard">
<div class="container-fluid">
<div class="row align-items-center">
<div class="col-md-6">
</div>
<div class="col-md-6">
<div class="dropdown show">
<div class="head_right text-right">
<a class="btn btn-secondary dropdown-toggle" href="#" role="button" id="profile" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">0x_____</a>
<div class="dropdown-menu" aria-labelledby="profile">
<button class="dropdown-item" href="#" id="logout">Logout</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-12">
<div class="head_body">
<div id="alertlocation"></div>
<div class="container-fluid">
<div class="row">
<div class="col-12">
<div class="head_titel">
<h1>Create New Applications</h1>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6 col-xl-5">
<div class="profile_pic">
<h1>App Profile Image</h1>
<h2>File types: png or jpg (min: 128px x 128px. max 4MB)</h2>
</div>
<div class="drap-content">
<label for="upload-profile">
<input type="file" id="upload-profile" accept="image/x-png,image/jpeg">
<img id="preview" src="assets/img/application/upload.png" alt="">
<h6></h6>
</label>
</div>
</div>
<div class="col-lg-8 col-xl-6">
<div class="profile_form">
<form action="">
<div class="sing_input">
<input id="appName" placeholder="Enter Application Name" value="">
</div>
<div class="sing_input">
<textarea name="appDesc" id="appDesc" cols="30" rows="10" placeholder="Enter Description"></textarea>
</div>
<div class="sing_input">
<button id="createApp" type="button" href="#">+ Create Application</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- 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>
<script src="assets/js/chainauth/header.js"></script>
<script src="assets/js/chainauth/createApp.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/4.5.3/js/bootstrap.min.js"></script>
</body>
</html>