liftinstall/static/index.html

68 lines
2.7 KiB
HTML
Raw Normal View History

2018-01-26 12:29:28 +00:00
<!doctype html>
<html lang="en">
2018-01-26 12:29:28 +00:00
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
2018-08-04 12:17:00 +00:00
<title id="window-title">... Installer</title>
2018-01-26 12:29:28 +00:00
<link rel="icon" href="/favicon.ico" />
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="/css/bulma.min.css" type="text/css">
2018-01-26 12:29:28 +00:00
<link rel="stylesheet" href="/css/main.css" type="text/css">
</head>
2018-09-19 02:22:40 +00:00
<body class="is-max-height">
2018-12-16 03:27:51 +00:00
<div class="fullscreen" id="ie-blackout" style="display: none">
<div class="title">Your computer is out of date.</div>
<div class="subtitle">
Make sure that your computer is up to date, and that you have Internet Explorer 11 installed.
</div>
<div class="subtitle">
Please note we do not support pirated or unsupported versions of Windows.
</div>
</div>
<script type="text/javascript">
if (!document.__proto__) {
document.getElementById("ie-blackout").style.display = "block";
}
</script>
2018-09-19 02:22:40 +00:00
<div id="app" class="is-max-height">
<section class="section is-max-height">
<div class="container is-max-height">
<div class="columns is-max-height">
<div class="column is-one-third has-padding" v-if="!metadata.is_launcher">
2018-09-19 01:17:30 +00:00
<img src="/logo.png" width="60%" />
2018-09-19 02:22:40 +00:00
<br />
<br />
<h2 class="subtitle" v-if="!metadata.preexisting_install">
2018-08-07 05:34:57 +00:00
Welcome to the {{ attrs.name }} installer!
2018-09-19 02:22:40 +00:00
</h2>
2018-09-19 01:17:30 +00:00
<h2 class="subtitle" v-if="!metadata.preexisting_install">
2018-01-27 03:27:41 +00:00
We will have you up and running in just a few moments.
</h2>
2018-09-19 01:17:30 +00:00
2018-09-19 02:22:40 +00:00
<h2 class="subtitle" v-if="metadata.preexisting_install">
2018-10-01 01:27:31 +00:00
Welcome to the {{ attrs.name }} Maintenance Tool.
2018-09-19 02:22:40 +00:00
</h2>
2018-01-27 03:27:41 +00:00
</div>
2018-01-26 12:29:28 +00:00
2018-08-07 10:23:28 +00:00
<router-view></router-view>
2018-01-26 12:29:28 +00:00
</div>
</div>
2018-01-27 03:27:41 +00:00
</section>
</div>
2018-08-07 12:03:15 +00:00
<script src="/js/vue.min.js" type="text/javascript"></script>
<script src="/js/vue-router.min.js" type="text/javascript"></script>
<script src="/api/attrs" type="text/javascript"></script>
<script src="/js/helpers.js" type="text/javascript"></script>
<script src="/js/views.js" type="text/javascript"></script>
<script src="/js/main.js" type="text/javascript"></script>
2018-01-26 12:29:28 +00:00
</body>
</html>