prismarine-web-client-mirror/index.html
u9g 48538f573f
Remove css from index.html (#54)
* Remove css from index.html

* Create styles.css

* Update webpack.config.js
2021-03-04 05:07:07 +01:00

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>