lotus/cmd/lotus-fountain/site/miner.html

48 lines
1.6 KiB
HTML
Raw Normal View History

2019-10-17 14:28:03 +00:00
<!DOCTYPE html>
<html>
<head>
<title>Creating Storage Miner - Lotus Fountain</title>
<link rel="stylesheet" type="text/css" href="main.css">
</head>
<body>
<div class="Index">
<div class="Index-nodes">
<div class="Index-node">
[CREATING STORAGE MINER]
</div>
<div class="Index-node" id="formnd">
2019-10-29 18:28:54 +00:00
<form id="f" action='/mkminer' method='POST'>
2019-10-17 14:28:03 +00:00
<span>Enter destination address:</span>
<input type='text' name='address' style="width: 300px">
2019-10-29 18:28:54 +00:00
<select name="sectorSize">
2020-03-06 00:42:59 +00:00
<option selected value="536870912">512MiB sectors</option>
2020-03-10 02:21:37 +00:00
<option selected value="34359738368">32GiB sectors</option>
2019-10-29 18:28:54 +00:00
</select>
<button type='submit'>Create Miner</button>
2019-10-17 14:28:03 +00:00
</form>
</div>
<div id="plswait" style="display: none" class="Index-node">
<b>Waiting for transaction on chain..</b>
</div>
<div class="Index-node">
<span>When creating storage miner, DO NOT REFRESH THE PAGE, wait for it to load. This can take more than 5min.</span>
</div>
</div>
<div class="Index-footer">
<div>
<a href="index.html">[Back]</a>
<span style="float: right">Not dispensing real Filecoin tokens</span>
</div>
</div>
</div>
<script>
let f = document.getElementById('f')
f.onsubmit = ev => {
document.getElementById('plswait').style.display = 'block'
document.getElementById('formnd').style.display = 'none'
}
</script>
</body>
</html>