Update: XMPP page

This commit is contained in:
hyzen
2026-06-07 11:05:14 +05:30
parent b05f1a731d
commit 69c0df70f3
3 changed files with 43 additions and 4 deletions

View File

@@ -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>