public-gateway-cacher/index.html

43 lines
642 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>
<style>
2019-04-04 22:19:19 +00:00
body,
html {
font-family: Verdana, sans-serif;
color: #121212;
background-color: #FAFAFA;
}
h1,
h3 {
font-weight: normal;
}
#results {
font-family: "SourceCodePro", monospace;
white-space: pre;
}
2017-09-27 19:52:43 +00:00
</style>
2019-04-04 22:19:19 +00:00
<script async src="./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 :
<input type="text" name="hash" id="input">
<button onclick="start();">Submit</button>
</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>