forked from Ronak-59/Alive.Network-Frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
49 lines (44 loc) · 1.56 KB
/
main.html
File metadata and controls
49 lines (44 loc) · 1.56 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Whistle.App</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="main.css" />
<link rel="stylesheet" type="text/css" media="screen" href="flexit.min.css" />
<script src="video.js"></script>
</head>
<body>
<div class="container">
<div id="alert"></div>
<div id="login">
Wallet: <input type="text" id="wallet">
Seed: <input type="password" id="seed">
is it your first time? <a href="#" id="generate">generate wallet?</a>
</div>
<div id="checkinBtn">
<button id="checkin" type="button">Check In HeartFontAwesome</button>
<div id="checkin_success">success</div>
<div id="checkin_fail">fail</div>
</div>
<script src="jquery-3.3.1.min.js"></script>
<script src="main.js"></script>
<div>
<div style="height:0px;overflow:hidden">
<input type="file" id="fileInput" name="fileInput" />
</div>
<div id="upload">
<div id="buttons">
<button id="uploadButton"><img src="images/upload-icon.png" /></button>
<button id="record"><img src="images/record.png" /></button>
</div>
<div id="video">
<video id="video" autoplay width=320></video>
<a href="#" id="uploadToChainButton">Upload</a>
</div>
</div>
</div>
</div>
</body>
</html>