oneuptime/admin-dashboard/public/index.html

108 lines
4.4 KiB
HTML
Raw Normal View History

2019-08-05 06:21:23 +00:00
<!doctype html>
<html lang="">
2020-07-14 03:53:41 +00:00
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta charSet='utf-8' />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="theme-color" content="#000000">
<meta name="slack-app-id" content="ACVBMTPJQ">
2019-08-05 06:21:23 +00:00
2020-07-14 03:53:41 +00:00
<link rel="manifest" href="/admin/manifest.json">
<link rel="shortcut icon" href="/admin/assets/img/favicons/favicon.ico">
2019-08-05 06:21:23 +00:00
2020-07-14 03:53:41 +00:00
<title>Fyipe Admin Dashboard</title>
2019-08-05 06:21:23 +00:00
2020-07-14 03:53:41 +00:00
<link rel="stylesheet" href="/admin/assets/css/dashboard.css">
<link rel="stylesheet" href="/admin/assets/css/newdashboard.css">
<link rel="stylesheet" href="/admin/assets/css/sail.css">
<link rel="stylesheet" href="/admin/assets/css/loader.css">
<link rel="stylesheet" href="/admin/assets/css/blockchart.css">
<link rel="stylesheet" href="/admin/assets/css/Selector.css">
<link rel="stylesheet" href="/admin/assets/css/tutorial.css">
<link rel="stylesheet" href="/admin/assets/css/reactwidgets.css">
2019-08-05 06:21:23 +00:00
2020-07-14 03:53:41 +00:00
<!-- Preload light, regular, medium and bold, which are fonts that are used on home -->
<link rel="preload" href="/admin/assets/fonts/camphor/font1.woff2" as="font" type="font/woff2" crossorigin="">
<link rel="preload" href="/admin/assets/fonts/camphor/font2.woff2" as="font" type="font/woff2" crossorigin="">
<link rel="preload" href="/admin/assets/fonts/camphor/font3.woff2" as="font" type="font/woff2" crossorigin="">
<link rel="preload" href="/admin/assets/fonts/camphor/font4.woff2" as="font" type="font/woff2" crossorigin="">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js" type="text/javascript"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.tipsy/1.0.3/jquery.tipsy.min.js" type="text/javascript"></script>
<script src="https://js.stripe.com/v3/"></script>
<script src="/admin/env.js"></script>
<style type="text/css">
/* Camphor */
@font-face {
2019-08-05 06:21:23 +00:00
font-family: 'Camphor';
font-weight: 300;
2020-03-21 23:10:38 +00:00
src: url('/accounts/assets/fonts/camphor/font1.woff2') format('woff2'),
2020-07-14 03:53:41 +00:00
url('/accounts/assets/fonts/camphor/font1.woff') format('woff');
}
2019-08-05 06:21:23 +00:00
2020-07-14 03:53:41 +00:00
@font-face {
2019-08-05 06:21:23 +00:00
font-family: 'Camphor';
font-weight: 500;
2020-03-21 23:10:38 +00:00
src: url('/accounts/assets/fonts/camphor/font2.woff2') format('woff2'),
2020-07-14 03:53:41 +00:00
url('/accounts/assets/fonts/camphor/font2.woff') format('woff');
}
2019-08-05 06:21:23 +00:00
2020-07-14 03:53:41 +00:00
@font-face {
2019-08-05 06:21:23 +00:00
font-family: 'Camphor';
font-weight: 600;
2020-03-21 23:10:38 +00:00
src: url('/accounts/assets/fonts/camphor/font3.woff2') format('woff2'),
2020-07-14 03:53:41 +00:00
url('/accounts/assets/fonts/camphor/font3.woff') format('woff');
}
2019-08-05 06:21:23 +00:00
2020-07-14 03:53:41 +00:00
@font-face {
2019-08-05 06:21:23 +00:00
font-family: 'Camphor';
font-weight: 400;
2020-03-21 23:10:38 +00:00
src: url('/accounts/assets/fonts/camphor/font4.woff2') format('woff2'),
2020-07-14 03:53:41 +00:00
url('/accounts/assets/fonts/camphor/font4.woff') format('woff');
}
</style>
<!-- Google Tag Manager -->
<script>
(function (w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({
'gtm.start': new Date().getTime(),
event: 'gtm.js'
});
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s),
dl = l != 'dataLayer' ? '&l=' + l : '';
j.async = true;
j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-PKQD5WH');
</script>
<!-- End Google Tag Manager -->
</head>
<body>
<div id="root" class="db-DashboardRoot"></div>
<script>
! function () {
2019-08-05 06:21:23 +00:00
if ('PerformanceLongTaskTiming' in window) {
2020-07-14 03:53:41 +00:00
var g = window.__tti = {
e: []
};
g.o = new PerformanceObserver(function (l) {
g.e = g.e.concat(l.getEntries())
});
g.o.observe({
entryTypes: ['longtask']
})
2019-08-05 06:21:23 +00:00
}
2020-07-14 03:53:41 +00:00
}();
</script>
<!-- Google Tag Manager (noscript) -->
<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-PKQD5WH" height="0" width="0" style="display:none;visibility:hidden"></iframe>
<!-- End Google Tag Manager (noscript) -->
</body>
2019-08-05 06:21:23 +00:00
</html>