blob: 2d4d1acb07588cde61f96cc108a44fc22985f031 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
<!DOCTYPE html>
<html>
<link rel="stylesheet" href="css/main.css">
<script src="js/app-bundle.js"></script>
<body>
<h1>FlightCore</h1>
<version-number-holder>Unknown version</version-number-holder>
<u>A Northstar installer, updater, and mod-manager</u>
<!--
This button serves multiple purposes
- Locate install
- Install Northstar
- Update Northstar
- Run Northstar
The functionality it serves and what it displays is based on the current state of the application
-->
<button id="omni-button">Loading...</button>
<northstar-version-holder>Unknown Northstar version</northstar-version-holder>
<input value="Couldn't find Titanfall2 install" id="install-location-holder" disabled></input>
<install-type-holder>UNKOWN</install-type-holder>
<origin-running-holder>ORIGIN STATUS UNKOWN</origin-running-holder>
<!-- <div class="hello">Click for Hello</div> -->
<!-- <counter-button>ADD</counter-button> -->
<!-- <counter-result>.</counter-result> -->
<!-- This button is solely for testing purposes. It force crashes the application to check crash logging -->
<panic-button>Panic Button</panic-button>
<!-- Button to allow switching to installing release candidate -->
<!-- Should be switched to dropdown menu later -->
Use release candidate? <input type="checkbox" id="use-release-candidate-checkbox" />
<!-- This showcases ping activity between frontend and backend. Should be hidden in non-dev/debug mode -->
<backend-ping class="server"></backend-ping>
</body>
</html>
|