2022-07-08 23:18:25 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<link rel="stylesheet" href="style.css">
|
|
|
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
|
|
|
|
|
<script src="script.js" type="text/javascript"></script>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<form id="overlay">
|
|
|
|
|
<p id="title">Jailing Interface</p>
|
|
|
|
|
<hr id="line">
|
|
|
|
|
<div class="infoBox">
|
|
|
|
|
<label class="text" for="playerid">Player id</label>
|
|
|
|
|
<select id="id" class="input" name="Player" style="width: 96%; height: 3vh;" required>
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
<label class="text" for="jailtime">Time</label>
|
2022-07-15 23:51:31 -04:00
|
|
|
<input id="time" class="input" type="number" placeholder="In Seconds" name="jailtime" min="10" required>
|
2022-07-08 23:18:25 +02:00
|
|
|
|
|
|
|
|
<label class="text" for="fine">Fine</label>
|
2022-07-15 23:51:31 -04:00
|
|
|
<input id="fine" class="input" type="number" placeholder="$1000" name="fine" max="" required>
|
2022-07-08 23:18:25 +02:00
|
|
|
|
|
|
|
|
<label class="text" for="reason">Reason</label>
|
2022-07-15 23:51:31 -04:00
|
|
|
<input id="reason" class="input" type="text" placeholder="Short Reason" name="reason" required>
|
2022-07-08 23:18:25 +02:00
|
|
|
</div>
|
|
|
|
|
<hr id="line" style="position: absolute; margin: auto; left: 0; right: 0; bottom: 15%;">
|
|
|
|
|
<p id="error"></p>
|
|
|
|
|
<button class="resetButton" type="reset">Close</button>
|
|
|
|
|
<button class="submitButton" type="submit" form="overlay">Jail</button>
|
|
|
|
|
</form>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|