56 lines
1.7 KiB
HTML
56 lines
1.7 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
<title>vybe</title>
|
||
|
<style>
|
||
|
* {
|
||
|
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
|
||
|
Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
|
||
|
sans-serif;
|
||
|
}
|
||
|
body {
|
||
|
background: #171719;
|
||
|
color: #d8d8d8;
|
||
|
}
|
||
|
.hidden {
|
||
|
display: none;
|
||
|
}
|
||
|
#msginput {
|
||
|
margin-top: 15px;
|
||
|
}
|
||
|
.message {
|
||
|
margin-bottom: 5px;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="register">
|
||
|
<h1>welcome to vybe</h1>
|
||
|
<h3>this site is in beta</h3>
|
||
|
<p>
|
||
|
to get started, you'll need to set up an account. we use public key
|
||
|
cryptography for security, rather than passwords. in this early beta
|
||
|
version your keys are stored in your browser storage only.
|
||
|
</p>
|
||
|
<label for="name">name/username</label>
|
||
|
<input type="text" id="name" />
|
||
|
<button id="submit">generate keys & register</button>
|
||
|
</div>
|
||
|
<div id="chat" class="hidden">
|
||
|
<h1>vybe</h1>
|
||
|
<h3>messages will appear below as they are sent</h3>
|
||
|
<div id="messages"></div>
|
||
|
<form id="msginput">
|
||
|
<input type="text" placeholder="write a message..." id="msg" />
|
||
|
<button type="submit" class="hidden" id="sendmsg"></button>
|
||
|
</form>
|
||
|
</div>
|
||
|
<script src="/openpgp.min.js"></script>
|
||
|
<script src="/chat.js"></script>
|
||
|
<script src="https://cdn.socket.io/4.5.4/socket.io.min.js"></script>
|
||
|
</body>
|
||
|
</html>
|