37 lines
866 B
HTML
37 lines
866 B
HTML
<html>
|
|
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
|
|
<meta content="utf-8" http-equiv="encoding"/>
|
|
<script src="index.js"></script>
|
|
|
|
<div id="controls">
|
|
</br>Register
|
|
|
|
<input id="register" type="text" placeholder="Name"/> <button onclick="register()">Register</button>
|
|
|
|
</br>Make
|
|
|
|
<input id="make" type="text" placeholder="GameName"/> <button onclick="make()">Make</button>
|
|
|
|
</br>Join
|
|
|
|
<input id="join" type="text" placeholder="Name"/> <button onclick="join()">Join</button>
|
|
|
|
</br>Start
|
|
|
|
<button onclick="start()">Start</button>
|
|
|
|
</br>Donate
|
|
<select id="donate" name="list">
|
|
<option value="x">x</option>
|
|
</select>
|
|
|
|
<input id="amount" type="number">
|
|
|
|
<button onclick="donate()">Donate</button>
|
|
|
|
</br>Accuse
|
|
|
|
<input id="accuse" type="text" placeholder="Name"/> <button onclick="accuse()">Accuse</button>
|
|
</div>
|
|
<div id="info"></div>
|
|
</html> |