-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
97 lines (95 loc) · 3.57 KB
/
index.html
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<title>Minecraft Name -> UUID | drnaylor.co.uk</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css"/>
<link href="css/bootstrap-theme.min.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div class="container">
<div class="row">
<div class="page-header col-xs-12">
<h1>Minecraft Name -> UUID Converter</h1>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<p>Use this utility to get the UUID of a Minecraft player from their current user name.</p>
</div>
</div>
<form>
<div class="form-group">
<label for="minecraftName">Minecraft Name:</label>
<div class="input-group col-md-6">
<input type="text" class="form-control" id="minecraftName" placeholder="Minecraft Name">
<span class="input-group-btn">
<button type="submit" id="sub" class="btn btn-default" disabled="disabled">Submit</button>
</span>
</div>
</div>
</form>
<div class="row">
<div class="col-xs-12">
<p>
<strong>UUID: </strong><span id="uuid">Not found</span>
</p>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<p>
<strong>
Name:
</strong>
<span id="name">
Not found
</span>
</p>
</div>
</div>
<div class="row">
<div class="col-sm-6">
<p>
<strong>
Legacy account:
</strong>
<span id="legacy">
</span>
</p>
</div>
<div class="col-sm-6">
<p>
<strong>
Demo account:
</strong>
<span id="demo">
</span>
</p>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<hr />
</div>
</div>
<div class="row">
<div class="col-xs-12">
<small>
(c) 2014-2015 Dr Daniel Naylor. Licensed under the MIT license. Minecraft is (c) Mojang.
</small>
</div>
</div>
</div>
<script src="js/jquery-2.1.1.min.js" type="text/javascript"></script>
<script src="js/bootstrap.min.js" type="text/javascript"></script>
<script src="js/uuidCheck.js" type="text/javascript"></script>
</body>
</html>