public-gateway-cacher/index.html

35 lines
687 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
2019-04-04 22:19:19 +00:00
<head>
<meta charset="UTF-8">
2017-09-27 19:52:43 +00:00
<title>Public IPFS Gateways</title>
2019-04-04 23:12:27 +00:00
<link rel="shortcut icon" type="image/png" href="images/favicon.png" />
2019-04-04 22:19:19 +00:00
2019-04-04 23:12:27 +00:00
<link rel="stylesheet" href="css/styles.css">
2019-04-04 22:19:19 +00:00
2019-04-04 23:12:27 +00:00
<script async src="javascript/app.js"></script>
</head>
2019-04-04 22:19:19 +00:00
<body>
<h1>Public IPFS Gateways</h1>
2019-04-04 22:19:19 +00:00
<!-- IPFS Hash -->
<p>
IPFS Hash :
2019-04-10 04:37:39 +00:00
<input type="text" name="ipfs_hash" id="input_ipfs">
<button onclick="start_ipfs();">Submit</button>
</p>
<!-- IPNS Hash -->
<p>
IPNS Hash :
<input type="text" name="ipns_hash" id="input_ipns">
<button onclick="start_ipns();">Submit</button>
2019-04-04 22:19:19 +00:00
</p>
2017-09-27 19:52:43 +00:00
<h3 id="stats"></h3>
<div id="results"></div>
</body>
2019-04-04 22:19:19 +00:00
</html>