22 lines
782 B
HTML
22 lines
782 B
HTML
<!doctype html>
|
|
<html lang="en" xmlns:th="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>Minecraft Helper</title>
|
|
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport"
|
|
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
</head>
|
|
<body>
|
|
<p class="font-bold">Hello!</p>
|
|
<p>I don't feel like making this pretty.</p>
|
|
|
|
<div class="flex flex-col mt-3">
|
|
<p>Player Data: <a class="text-blue-600" th:href="${url}" th:text="${url}">Player Data</a></p>
|
|
<p>Avatar Url: <a class="text-blue-600" th:href="${avatar_url}" th:text="${avatar_url}">Avatar Url</a></p>
|
|
</div>
|
|
</body>
|
|
</html> |