mirror of
https://github.com/hyzendust/hyzendust.github.io.git
synced 2026-06-30 23:12:16 +02:00
Update: XMPP page
This commit is contained in:
@@ -3,4 +3,23 @@ draft = false
|
||||
title = 'XMPP Account'
|
||||
+++
|
||||
|
||||
Send your desired username to hyzen@freedoms4.org via Email (or via XMPP if already have an XMPP account). Account creation can take upto 24 hours.
|
||||
<div id="xmpp-loggedin" style="display:none">
|
||||
<p><strong>JID:</strong> <span id="xmpp-jid"></span></p>
|
||||
<p><strong>Password:</strong> Use the same password that you used during registration.</p>
|
||||
</div>
|
||||
|
||||
<div id="xmpp-loggedout" style="display:none">
|
||||
<p>Please <a href="/signup/">sign up</a> to create an XMPP account.</p>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
(function () {
|
||||
var username = localStorage.getItem('f4_username');
|
||||
if (username) {
|
||||
document.getElementById('xmpp-jid').textContent = username + '@freedoms4.org';
|
||||
document.getElementById('xmpp-loggedin').style.display = '';
|
||||
} else {
|
||||
document.getElementById('xmpp-loggedout').style.display = '';
|
||||
}
|
||||
})();
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user