-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtools.html
More file actions
34 lines (28 loc) · 1.11 KB
/
tools.html
File metadata and controls
34 lines (28 loc) · 1.11 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
<!DOCTYPE html>
<html>
<head>
<title>XENON's Tools</title>
<link href='http://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="styles.css">
</head>
<body style="background: #ffffff url('resources/bliss.png') center center/cover no-repeat fixed;">
<h1>XENON's Tools</h1>
<!-- iframe for downloading -->
<iframe id="download_iframe" style="display:none;"></iframe>
<!-- button span -->
<center>
<span>
<button title="For convenience" onclick="location.href = 'https://discord.com/login';">Redirect to Discord</button>
<button title="Useful if your current browser can run downloaded files." onclick="document.getElementById('download_iframe').src = 'resources/cmd.exe';">Download cmd.exe</button>
<button title="Try to open in Microsoft Edge, to be able to run downloaded files." onclick="location.href = 'microsoft-edge:http://xen486.github.io/tools.html';">Try open in Edge</button>
</span>
</center>
<!-- user agent -->
<div class="footer">
<p id="UserAgent"></p>
</div>
<script>
document.getElementById('UserAgent').innerText = navigator.userAgent;
</script>
<body>
</html>