better welcome page; password-forgotten-feature; refs #32
parent
c8f4c8494c
commit
7977b29d2d
7 changed files with 102 additions and 17 deletions
@ -1,8 +1,15 @@ |
|||||||
<h2>Register User (Step 1 of 1)</h2> |
<h2>Register User</h2> |
||||||
|
<p>All you need to start is a username and a password:</p> |
||||||
<form id="register" onsubmit="createkeypair(this.elements['user'].value, this.elements['pwd'].value)"> |
<form id="register" onsubmit="createkeypair(this.elements['user'].value, this.elements['pwd'].value)"> |
||||||
<input placeholder="user name" type="text" id="user" oninput="checkuser(this.value)"/> |
<input placeholder="username" type="text" id="user" oninput="checkuser(this.value)"/> |
||||||
<input placeholder="password" type="password" id="pwd" oninput="checkpwd(this.value, document.getElementById('pwd2').value)"/> |
<input placeholder="password" type="password" id="pwd" oninput="checkpwd(this.value, document.getElementById('pwd2').value)"/> |
||||||
<input placeholder="repeat password" type="password" id="pwd2" oninput="checkpwd(document.getElementById('pwd').value, this.value)"/> |
<input placeholder="repeat password" type="password" id="pwd2" oninput="checkpwd(document.getElementById('pwd').value, this.value)"/> |
||||||
<input id="createuser" type="submit" disabled/> |
<input id="createuser" type="submit" disabled/> |
||||||
</form> |
</form> |
||||||
<p>Please chose any username, e.g. a pseudonym, your e-mail, your phone number, your real name, and chose a safe password.</p> |
<p>Please chose any username, e.g. a pseudonym, your e-mail, your phone number, your real name, and chose a safe password.</p> |
||||||
|
<h2>What is Safe Chat?</h2> |
||||||
|
<p>Safe Chat is a chat program to protect your privacy. It is designed to be extremely easy to use, with all cool features, but with highest security through strong encryption. For more information, open «About Safe Chat» in the menu (<img style="height: 1em; border: 2px solid green; vertical-align: text-bottom; background-color: green" src="menu.svg" />) above.</p> |
||||||
|
<h2>Never forget your Password!</h2> |
||||||
|
<p>This messenger is absolutely secure. But on the other hand, that means, no one except you knows your password. No one can read your messages exept you, not even our administrator. It is technically impossible to restore a password. You would have to delete your account and create a new one. In that case, all messages are lost.</p> |
||||||
|
<h3>Keys and Password</h3> |
||||||
|
<p>Safe Chat internally uses OpenPGP for public/private-key encryption. Your password is not transfered to the server and not stored, it is used only to create and encrypt your private key. There are two keys, a secret private key, that is stored in the browser (or app) on your computer, encrypted with your password and not sent to the server. There is also public key, which is sent to the server and used by other users to encrypt messages that only you can read. You can backup and restore your keys and setings to and from a file. This is the only way to transfer your account to another browser or to computer. Do not delete your browser's local storage unless you have backed up your keys.</p> |
||||||
|
Loading…
Reference in new issue