prismarine-web-client-mirror/index.html

29 lines
887 B
HTML
Raw Normal View History

2021-02-27 17:12:11 -05:00
<!DOCTYPE html>
<html>
<head>
<title>Prismarine Web Client</title>
<link rel="stylesheet" href="styles.css">
2021-02-27 17:12:11 -05:00
</head>
<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>
</div>
<div class="chat-wrapper chat-input-wrapper">
<div class="chat" id="chat-input">
<input type="text" class="chat" id="chatinput"></input>
</div>
</div>
<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>