27 lines
862 B
HTML
27 lines
862 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<meta name="theme-color" content="#000000">
|
|
<base href="/" />
|
|
<link rel="manifest" href="%PUBLIC_URL%/manifest.json">
|
|
<link rel="shortcut icon" href="%PUBLIC_URL%/favicons/favicon.ico">
|
|
<link
|
|
crossorigin="anonymous"
|
|
href="https://use.fontawesome.com/releases/v5.2.0/css/all.css"
|
|
integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ"
|
|
rel="stylesheet"
|
|
>
|
|
<title>Token Wizard</title>
|
|
</head>
|
|
<body>
|
|
<noscript>
|
|
You need to enable JavaScript to run this app.
|
|
</noscript>
|
|
<div id="root"></div>
|
|
<script src="./application.js"></script>
|
|
<script src="./bundle.js"></script>
|
|
</body>
|
|
</html>
|