123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- <!DOCTYPE html>
- <html lang="en" class="ombre">
- <head>
- <meta charset="UTF-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <meta http-equiv="X-UA-Compatible" content="ie=edge" />
- <title>Tutela</title>
- <!-- Preview of web
- ================================================== -->
- <!-- Primary Meta Tags -->
- <meta name="title" content="Tutela">
- <meta name="description" content="For individuals who care to protect their privacy, they must be mindful of what transactions they make and how they make them.">
- <!-- Open Graph / Facebook -->
- <meta property="og:type" content="website">
- <meta property="og:url" content="https://tutela.xyz/">
- <meta property="og:title" content="Tutela">
- <meta property="og:description" content="For individuals who care to protect their privacy, they must be mindful of what transactions they make and how they make them.">
- <meta property="og:image" content="https://tutela.xyz/static/img/preview.png">
- <!-- Twitter -->
- <meta property="twitter:card" content="summary_large_image">
- <meta property="twitter:url" content="https://tutela.xyz/">
- <meta property="twitter:title" content="Tutela">
- <meta property="twitter:description" content="For individuals who care to protect their privacy, they must be mindful of what transactions they make and how they make them.">
- <meta property="twitter:image" content="https://tutela.xyz/static/img/preview.png">
- <!-- Stylesheets
- ================================================== -->
- <!-- Bootstrap core CSS -->
- <link rel="stylesheet" href="/static/css/bootstrap.min.css" />
- <!-- Font -->
- <link rel="preconnect" href="https://fonts.googleapis.com" />
- <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
- <link
- href="https://fonts.googleapis.com/css2?family=PT+Mono&display=swap"
- rel="stylesheet"
- />
- <!-- Custom styles for this template -->
- <link rel="stylesheet" type="text/css" href="/static/css/index.css" />
- <link rel="stylesheet" type="text/css" href="/static/css/cluster.css" />
- <link rel="stylesheet" type="text/css" href="/static/css/fonts.css" />
- <link rel="stylesheet" type="text/css" href="/static/css/transactions.css" />
- <!-- favicon -->
- <link
- rel="apple-touch-icon"
- sizes="180x180"
- href="/static/img/apple-touch-icon.png"
- />
- <link
- rel="icon"
- type="image/png"
- sizes="16x16"
- href="/static/img/favicon-16x16.png"
- />
- <script
- src="https://kit.fontawesome.com/3eb368cf27.js"
- crossorigin="anonymous"
- ></script>
- <!-- Global site tag (gtag.js) - Google Analytics -->
- <script
- async
- src="https://www.googletagmanager.com/gtag/js?id=G-0HKGXPMPCH"
- ></script>
- <script>
- window.dataLayer = window.dataLayer || [];
- function gtag() {
- dataLayer.push(arguments);
- }
- gtag("js", new Date());
- gtag("config", "G-0HKGXPMPCH");
- </script>
- <script
- crossorigin
- src="https://unpkg.com/react@17/umd/react.production.min.js"
- ></script>
- <script
- crossorigin
- src="https://unpkg.com/react-dom@17/umd/react-dom.production.min.js"
- ></script>
- </head>
- <body>
- <div id="root">
- </div>
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
- <script src="/static/js/bootstrap.min.js"></script>
- <script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
- <script src="{{ url_for('static', filename='dist/bundle.js') }}"></script>
- </body>
- <script>
- $(function () {
- var form = $("#address-form");
- form.submit((e) => {
- e.preventDefault();
- const a = $("#input-address").first().val();
- window.location.href = "/cluster?address=" + a;
- });
- });
- </script>
- </div>
- </html>
|