35 lines
		
	
	
		
			687 B
		
	
	
	
		
			HTML
		
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			687 B
		
	
	
	
		
			HTML
		
	
	
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
 | 
						|
<head>
 | 
						|
	<meta charset="UTF-8">
 | 
						|
	<title>Public IPFS Gateways</title>
 | 
						|
	<link rel="shortcut icon" type="image/png" href="images/favicon.png" />
 | 
						|
 | 
						|
	<link rel="stylesheet" href="css/styles.css">
 | 
						|
 | 
						|
	<script async src="javascript/app.js"></script>
 | 
						|
</head>
 | 
						|
 | 
						|
<body>
 | 
						|
	<h1>Public IPFS Gateways</h1>
 | 
						|
 | 
						|
	<!-- IPFS Hash -->
 | 
						|
	<p>
 | 
						|
		IPFS Hash :
 | 
						|
		<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>
 | 
						|
	</p>
 | 
						|
 | 
						|
	<h3 id="stats"></h3>
 | 
						|
	<div id="results"></div>
 | 
						|
</body>
 | 
						|
 | 
						|
</html> |