-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (71 loc) · 2.21 KB
/
index.html
File metadata and controls
79 lines (71 loc) · 2.21 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<!-- Standard Metadata -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<title>open-mc</title>
<!-- OpenGraph Metadata -->
<meta property="og:title" content="open-mc" />
<meta property="og:url" content="https://github.com/winnpixie/open-mc/" />
<meta property="og:description" content="An open-source Minecraft profile resolver." />
<meta property="og:locale" content="en_US" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@winnpixie" />
<meta name="twitter:title" content="open-mc" />
<meta name="twitter:description" content="An open-source Minecraft profile resolver." />
<!-- Google Metadata -->
<meta name="theme-color" content="#0099FF" />
<link rel="stylesheet" href="assets/styles/main.css" />
<script src="assets/scripts/main.js" defer="defer"></script>
</head>
<body onload="onBodyLoad();">
<div id="container">
<header>
<h1>
<a id="title-link" href="#">open-mc</a>
</h1>
<p>An open-source Minecraft profile resolver written in PHP.</p>
</header>
<hr />
<main>
<form onsubmit="resolve(this, event);">
<input id="query-box" type="text" name="q" placeholder="Username / UUID" maxlength="36" />
</form>
<div id="error-box"></div>
<h1 id="profile-title"></h1>
<div id="profile-info">
<table>
<tbody id="info-table">
<tr>
<th>Information</th>
</tr>
</tbody>
</table>
</div>
<div id="profile-history">
<table>
<tbody id="history-table">
<tr>
<th>Username History</th>
</tr>
</tbody>
</table>
</div>
</main>
<hr />
<footer>
<p>
<a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/"><img
alt="Creative Commons License" style="border-width: 0"
src="https://i.creativecommons.org/l/by-sa/4.0/88x31.png" /></a><br />Unless
otherwise is stated, this work is licensed under a <a rel="license"
href="http://creativecommons.org/licenses/by-sa/4.0/">Creative
Commons Attribution-ShareAlike 4.0 International License</a>.
</p>
<h6>NOT AFFILIATED WITH MOJANG STUDIOS.</h6>
</footer>
</div>
</body>
</html>