mirror of
https://github.com/plexusorg/Module-HTTPD.git
synced 2025-04-14 15:13:03 +00:00
16 lines
467 B
HTML
16 lines
467 B
HTML
<!DOCTYPE html>
|
|
<body>
|
|
<div style="text-align: center;">
|
|
<h2 style="font-family:Helvetica">Enter the UUID or username of the player you want to check</h2>
|
|
<input id="test" type="text" autofocus>
|
|
<button type="button" onclick="redirect()">Submit</button>
|
|
|
|
<script>
|
|
function redirect() {
|
|
var url = document.getElementById('test').value
|
|
window.location = "punishments/" + url
|
|
}
|
|
</script>
|
|
</div>
|
|
</body>
|
|
</html> |