public-gateway-cacher/index.html

43 lines
642 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Public IPFS Gateways</title>
<style>
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;
}
</style>
<script async src="./app.js"></script>
</head>
<body>
<h1>Public IPFS Gateways</h1>
<!-- IPFS Hash -->
<p>
IPFS Hash :
<input type="text" name="hash" id="input">
<button onclick="start();">Submit</button>
</p>
<h3 id="stats"></h3>
<div id="results"></div>
</body>
</html>