Files
hyzendust.github.io/content/services/email-account.md
2026-06-21 01:50:07 +05:30

28 lines
1.2 KiB
Markdown

+++
draft = false
title = 'Email'
weight = 1
registration-needed = true
+++
<div id="email-loggedin" style="display:none">
<p><strong>Email ID:</strong> <span id="email-address"></span></p>
<p><strong>Password:</strong> Use the same password that you used during registration.</p>
</div>
<div id="email-loggedout" style="display:none">
<p>Big corporate email providers read and scan every message that passes through their servers. Your conversations become training data and ad-targeting fuel. That's not email but surveillance with an inbox attached!</p>
<p>We provide this service because privacy shouldn't be a premium feature, it should just be how things work by default. Your email here isn't mined or isn't sold, and isn't anyone's business but yours.</p>
<p>Please <a href="/signup/">sign up</a> to use this service.</p>
</div>
<script>
(function () {
var username = localStorage.getItem('f4_username');
if (username) {
document.getElementById('email-address').textContent = username + '@freedoms4.org';
document.getElementById('email-loggedin').style.display = '';
} else {
document.getElementById('email-loggedout').style.display = '';
}
})();
</script>