* Initial version, just loading * Warning dialog * Retrive & show applications * Display completed * Edit/New mode start * Display distry state, resolve hashes to urls * Move buttons to top-level * Rework display * Update error handling & dirty checks * Formatting * Split sections into components * Styling updates * Slight styling adjustments * Start delete modal * Add modals for register & update * Flesh-out register modal * Register error handling * Register registers * List refresh on add & remove * Update operational * Simplify, remove bg image * Really remove bg * fix case * Collapse text-only components
18 lines
519 B
HTML
18 lines
519 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<link rel="icon" href="/parity-logo-black-no-text.png" type="image/png">
|
|
<title>Dapp Registry</title>
|
|
</head>
|
|
<body>
|
|
<div id="container"></div>
|
|
<script src="vendor.js"></script>
|
|
<script src="commons.js"></script>
|
|
<script src="/parity-utils/parity.js"></script>
|
|
<script src="dappreg.js"></script>
|
|
</body>
|
|
</html>
|