mirror of
https://github.com/PrismarineJS/prismarine-web-client.git
synced 2025-02-17 15:50:14 -05:00
28 lines
887 B
HTML
28 lines
887 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Prismarine Web Client</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</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>
|
|
|
|
<script type="text/javascript" src="index.js"></script>
|
|
</body>
|
|
</html>
|