33 lines
1011 B
HTML
33 lines
1011 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<link rel="stylesheet" href="static/css/styles.css">
|
|
<script src="static/js/wasm_exec.js"></script>
|
|
<title>LChat</title>
|
|
</head>
|
|
<body>
|
|
<div class="login" id="login">
|
|
<h1>To use LChat, you must be invited by an administrator.</h1>
|
|
<p>Already have an account? <a href="login">Log in!</a></p>
|
|
</div>
|
|
<div class="app" id="app">
|
|
<div class="topBar">
|
|
<span>LChat</span>
|
|
<button id="invite" class="invite">Invite</button>
|
|
<button id="logout">Logout</button>
|
|
</div>
|
|
<div class="messageBox" id="messageBox"></div>
|
|
<div class="sendBox">
|
|
<!--suppress HtmlFormInputWithoutLabel -->
|
|
<input type="text" id="sendField">
|
|
<button id="send">Send</button>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
loadWasm("static/wasm/app.wasm")
|
|
</script>
|
|
</body>
|
|
</html> |