2021-02-27 17:12:11 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2021-02-27 18:18:58 -05:00
|
|
|
<title>Prismarine Web Client</title>
|
2021-03-03 23:07:07 -05:00
|
|
|
<link rel="stylesheet" href="styles.css">
|
2021-02-27 17:12:11 -05:00
|
|
|
</head>
|
2021-03-02 15:44:42 -05:00
|
|
|
<body id="main-body">
|
|
|
|
<img id="crosshair" src="extra-textures/icons.png">
|
|
|
|
<div class="chat-wrapper chat-display-wrapper">
|
|
|
|
<div class="chat" id="chat">
|
|
|
|
<p>Welcome to prismarine-web-client! Chat appears here.</p>
|
|
|
|
</div>
|
2021-02-27 18:18:58 -05:00
|
|
|
</div>
|
|
|
|
<div class="chat-wrapper chat-input-wrapper">
|
|
|
|
<div class="chat" id="chat-input">
|
|
|
|
<input type="text" class="chat" id="chatinput"></input>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-03-02 15:44:42 -05:00
|
|
|
<div id="loading-background" class="loader">
|
|
|
|
<img src="extra-textures/loading.png" id="loading-image">
|
|
|
|
<div id="loading" class="loader">
|
|
|
|
<h1 class="middle" id="loading-text">Waiting for user...</h1>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2021-02-27 17:12:11 -05:00
|
|
|
<script type="text/javascript" src="index.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|