37 lines
1.3 KiB
HTML
Executable File
37 lines
1.3 KiB
HTML
Executable File
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>Polkadot.js Integration</title>
|
|
<link rel="stylesheet" type="text/css" href="style.css">
|
|
<script src="js/bundle-polkadot-util.js"></script>
|
|
<script src="js/bundle-polkadot-util-crypto.js"></script>
|
|
<script src="js/bundle-polkadot-types.js"></script>
|
|
<script src="js/bundle-polkadot-api.js"></script>
|
|
<script src="js/bundle-polkadot-extension-dapp.js"></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="container">
|
|
<h2>Sustrate ZKP Pallet</h2>
|
|
<div class="nav-buttons">
|
|
<a href="index.html" class="nav-button active">Plonk Verifier</a>
|
|
<a href="groth16.html" class="nav-button">Groth16 Verifier</a>
|
|
</div>
|
|
<div>
|
|
<input type="text" id="input1" placeholder="Verification Key">
|
|
<input type="text" id="input2" placeholder="Public Inputs">
|
|
<input type="text" id="input3" placeholder="Proof">
|
|
<button id="submitBtn">Submit</button>
|
|
</div>
|
|
<div id="loadingIndicator" class="loading-indicator"></div>
|
|
<div id="successIndicator" class="indicator success-indicator">✔</div> <!-- Checkmark -->
|
|
<div id="failureIndicator" class="indicator failure-indicator">✖</div> <!-- 'X' mark -->
|
|
</div>
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
|
|
</html> |