Update: email, xmpp services urls

This commit is contained in:
hyzen
2026-06-24 13:39:32 +05:30
parent 28429ac45b
commit 0c54e425b0
9 changed files with 9 additions and 9 deletions

28
content/services/xmpp.md Normal file
View File

@@ -0,0 +1,28 @@
+++
draft = false
title = 'XMPP'
weight = 2
registration-needed = true
summary = 'Get an XMPP account.'
+++
<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>XMPP has been around since 1999, originally called Jabber. It was built as an open and decentralized protocol so that anyone could run their own server and still talk to people on other servers. It works in the same way email works across providers.</p>
<p>No ads reading your conversations, no algorithm deciding who sees what, no single corporation owning the network or able to shut it off. Just an open standard that's outlasted most of the modern chat apps that came after it.</p>
<p>Please <a href="/signup/">sign up</a> to have an XMPP account.</p>
</div>
<script>
(function () {
var username = localStorage.getItem('f4_username');
if (username) {
document.getElementById('xmpp-jid').textContent = username.toLowerCase() + '@freedoms4.org';
document.getElementById('xmpp-loggedin').style.display = '';
} else {
document.getElementById('xmpp-loggedout').style.display = '';
}
})();
</script>