client
parent
fd6092947f
commit
55fdc45073
|
@ -83,9 +83,7 @@ async function loadKeys(keys) {
|
|||
async function loadMessages() {
|
||||
window.socket.emit(
|
||||
"get_history",
|
||||
window.earliestMessage
|
||||
? { before: window.earliestMessage, thread: window.currentThreadId }
|
||||
: { thread: window.currentThreadId }
|
||||
{ before: window.earliestMessage, thread: window.currentThreadId }
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
@ -11,9 +11,12 @@
|
|||
Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
|
||||
sans-serif;
|
||||
}
|
||||
body {
|
||||
background: #171719;
|
||||
color: #d8d8d8;
|
||||
body, button, input {
|
||||
background: #020202;
|
||||
color: #eaeaea;
|
||||
}
|
||||
button {
|
||||
border-color: #767676;
|
||||
}
|
||||
.hidden {
|
||||
display: none;
|
||||
|
@ -35,14 +38,14 @@
|
|||
<body>
|
||||
<div id="register" class="hidden">
|
||||
<h1>welcome to vybe</h1>
|
||||
<h3>this site is in beta</h3>
|
||||
<h3>a communication network (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.
|
||||
to get started, you'll need an account. we use public key
|
||||
cryptography for security, rather than passwords. for now
|
||||
your keys are stored in your browser storage only.
|
||||
</p>
|
||||
<form id="registerform">
|
||||
<label for="name">name/username</label>
|
||||
<label for="name">name/username: </label>
|
||||
<input type="text" id="name" />
|
||||
<button id="submit" type="submit">generate keys & register</button>
|
||||
</form>
|
||||
|
|
Loading…
Reference in New Issue