-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
62 lines (49 loc) · 2.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Demoy</title>
<meta name="theme-color" content="#5792CC">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="blue">
<meta name="apple-mobile-web-app-title" content="Demoy">
<link rel="apple-touch-icon" href="favicon.png">
<link rel="manifest" href="/manifest.json">
<link rel="stylesheet" href="materialize.min.css">
<link rel="stylesheet" type="text/css" href="main.css">
</head>
<body>
<h1>Demoy</h1>
<div class="container">
<center>
<button id="authorise" class="waves-effect waves-yellow btn yellow blue-text">Authorise</button>
<button id="istokenvalid" class="waves-effect waves-yellow btn yellow blue-text">Check authentication</button>
<button id="showfiles" class="waves-effect waves-yellow btn yellow blue-text">Show</button>
<button id="getfile" class="waves-effect waves-yellow btn yellow blue-text">Get</button>
<button id="uploadfile" class="waves-effect waves-yellow btn yellow blue-text">Upload File</button>
<button id="updatefile" class="waves-effect waves-yellow btn yellow blue-text">Update</button>
<button id="deletefile" class="waves-effect waves-yellow btn yellow blue-text">Delete</button>
<button id="freetoken" class="waves-effect waves-yellow btn yellow blue-text">free token</button>
<div>
<input id="filepath" placeholder="Select your file (please leave the extension in)" type="text" value="">
</div>
<div class="file-field input-field">
<div class="btn yellow blue-text">
<span>File</span>
<input id="file" type="file" name="safetest" formenctype="multipart/form-data" accept="file_extension">
</div>
<div class="file-path-wrapper">
<input class="file-path validate" type="text">
</div>
</div>
<div id="fileshow" class="fileshow"></div>
</center>
</div>
<p class="credit">By Joseph Meagher</p>
<script src="jquery.min.js"></script>
<script src="materialize.min.js"></script>
<script src="main.js"></script>
</body>
</html>