-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (62 loc) · 1.87 KB
/
index.html
File metadata and controls
72 lines (62 loc) · 1.87 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!--
The ORIGINAL CODE is the `BRACE WEBSITE` Source Code.
The INITIAL DEVELOPER is Brace Inc., DEntisT.
Version: MPL 1.1
The contents of this file are subject to the Mozilla Public License Version
1.1 the "License"; you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
for the specific language governing rights and limitations under the
License.
Portions created by the Initial Developer are Copyright (c) 2022
the Initial Developer. All Rights Reserved.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" href="brace_logo.png" type="image/icon type">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Brace™ Co.</title>
<link rel="stylesheet" href="web_style.css">
<script src="user_utils.js"></script>
<script src="main_script.js"></script>
<script src="button_sys.js"></script>
<script src="dropdown_impl.js"></script>
<script src="static.js"></script>
<script>
console.log("index.html (Brace Inc.): script element called.")
current_page = PAGE_BRACE_HOMEPAGE;
</script>
</head>
<body>
<div id="fade-block"></div>
<script src="fade_block.js"></script>
<div id="loader-wrapper">
<div id="loader"></div>
<div id="loading-text">
<h1>Loading...</h1>
</div>
<div id="loading-text">
<p>This should not take long!</p>
</div>
</div>
<script>
setTimeout(redirect_init,500);
function redirect_init()
{
if(user_utils.isMobile())
{
window.location.href = "mobile_hmpg.html";
}
if(user_utils.isMobile() == false)
{
brace_redirect(BRACE_LINK__HOMEPAGE);
}
}
</script>
<script src="popup_impl.js"></script>
</body>
</html>