-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (33 loc) · 1 KB
/
index.html
File metadata and controls
33 lines (33 loc) · 1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>File Upload to Spheron</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="container">
<h1>File Upload to Spheron</h1>
<div class="input-group">
<label for="filePath">File Path:</label>
<input type="text" id="filePath">
</div>
<div class="input-group">
<label for="bucketName">Bucket Name:</label>
<input type="text" id="bucketName">
</div>
<div class="input-group">
<label for="spheronToken">Spheron Token:</label>
<input type="text" id="spheronToken">
</div>
<div class="input-group">
<label for="walletPrivateKey">Wallet Private Key:</label>
<input type="text" id="walletPrivateKey">
</div>
<button id="uploadButton">Upload File</button>
<div id="uploadResponse" style="margin-top: 20px;"></div>
</div>
<script src="script.js"></script>
</body>
</html>