-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstatic.js
More file actions
80 lines (72 loc) · 3.53 KB
/
static.js
File metadata and controls
80 lines (72 loc) · 3.53 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
73
74
75
76
77
78
79
80
/*
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.
*/
const HTML = {
contact_info: `
<div id="ContactInfo" class="modal">
<div class="modal-content">
<img class="apply_border_radius" src="brace_slogan.png">
<span class="close" onclick="closeModal()">×</span>
<h2>Contact Mail</h2>
<p>Contact us via mail at <code>bracetm.official@gmail.com</code>.</p>
</div>
</div>
`,
footer: `
<img class="apply_border_radius" src="brace_tinylogo.png">
<p><b>© 2026 Brace™ Co.</b> All rights reserved.</p>
<headerbutton onclick="brace_redirect(BRACE_LINK__PP)">PRIVACY POLICY</headerbutton>
<headerbutton onclick="brace_redirect(BRACE_LINK__GITHUB)"><code>GitHub</code></headerbutton>
<headerbutton onclick="brace_redirect(BRACE_LINK__DISCORD)">Discord</headerbutton>
<headerbutton onclick="brace_redirect(BRACE_LINK__IG)">Instagram</headerbutton>
<headerbutton onclick="brace_redirect(BRACE_LINK__YT)">YouTube</headerbutton>
<headerbutton onclick="brace_redirect(BRACE_LINK__TT)">TikTok</headerbutton>
<headerbutton onclick="openModal('ContactInfo')">Contact</headerbutton>
`,
not_found: `
<p>Not found 404</p>
`,
header: `
<div class="container___"><div class="logo">
<img class="apply_border_radius" src="brace_logo.png" alt="BRACE Logo">
</div>
<h3 id="whiteText">Brace Software Co.</h3></div>
<nav>
<ul><!--HEADER-->
<div class="dropdown_container">
<headerbutton id="headerbutton_refresh" onclick="brace_redirect(BRACE_LINK__HOMEPAGE)">HOME</headerbutton>
<headerbutton id="headerbutton_about" onclick="brace_redirect(BRACE_LINK__HOMEPAGE)">ABOUT</headerbutton>
<headerbutton id="headerbutton_services" onclick="brace_redirect(BRACE_LINK__SERVICESBUTTON)">SERVICES</headerbutton>
</div>
<div class="dropdown_container">
<headerbutton id="headerbutton_more" onclick="openDropdown('headerbutton_more','mydropdown')">PRODUCTS ↓</headerbutton>
<div class="dropdown" id="mydropdown">
<headerbutton onclick="brace_redirect(BRACE_LINK__PAWNSCRIPTBUTTON)">PawnScript</headerbutton>
<headerbutton onclick="brace_redirect(BRACE_LINK__DAMNLARPERBUTTON)">Damn Larper</headerbutton>
<headerbutton onclick="brace_redirect(BRACE_LINK__NEWASMBUTTON)">New-ASM</headerbutton>
</div>
</div>
<div class="dropdown_container">
<headerbutton id="headerbutton_more2" onclick="openDropdown('headerbutton_more2','mydropdown2')">MORE ↓</headerbutton>
<div class="dropdown" id="mydropdown2">
<!--<headerbutton onclick="openModal('ContactInfo')">CONTACT</headerbutton>-->
<!--HEADER-<headerbutton onclick="handleAccountRequest()">LOGIN</headerbutton>--HEADER-->
<headerbutton id="headerbutton_refresh" onclick="brace_redirect(BRACE_LINK__HOMEPAGE)">↻ REFRESH</headerbutton>
</div>
</div>
</ul><!--HEADER-->
</nav>
`
};