Welcome to Let's Chat
Join as a guest to start chatting with people worldwide
Terms and Conditions

1. Age Requirement: You must be at least 13 years old (or the minimum age required by your country's laws) to use this service.

2. Anonymous Chat: This is an anonymous chat platform. Do not share personal information such as your full name, address, phone number, email, or financial details.

3. Prohibited Content: Sharing illegal, harmful, threatening, abusive, harassing, defamatory, or obscene content is strictly prohibited.

4. No Illegal Activities: Users must not use this platform for any illegal activities or to promote violence, terrorism, or discrimination.

5. Privacy: We do not store your personal conversations. However, chat logs may be temporarily cached for moderation purposes.

6. Reporting: Users can report inappropriate behavior. We reserve the right to ban users who violate these terms.

7. Disclaimer: We are not responsible for user-generated content. Users are solely responsible for their interactions.

8. Compliance: By using this service, you agree to comply with all applicable local, national, and international laws.

9. Data Protection: We comply with GDPR, CCPA, and other applicable data protection regulations.

10. Modification: We reserve the right to modify these terms at any time without prior notice.
Let's Chat
๐ŸŸข 16 Guest G
๐Ÿ“ข Advertisement

Your Ad Here

G
Create a post
?
Select a user Online
Anonymous chat - do not share personal info. Share at your own risk.
๐Ÿ“ข Advertisement

Your Ad Here

function showRegisterForm() { document.getElementById('register-modal').style.display = 'flex'; document.querySelector('.welcome-popup').style.display = 'none'; } function closeRegisterForm() { document.getElementById('register-modal').style.display = 'none'; document.querySelector('.welcome-popup').style.display = 'block'; } async function submitRegistration() { const username = document.getElementById('reg-username').value; const email = document.getElementById('reg-email').value; const password = document.getElementById('reg-password').value; const age = document.getElementById('reg-age').value; const gender = document.getElementById('reg-gender').value; const country = document.getElementById('reg-country').value; const city = document.getElementById('reg-city').value; const otp = document.getElementById('reg-otp').value; if (!username || !email || !password) { alert('Please fill in username, email, and password'); return; } const res = await fetch('/api/register-with-email', { method: 'POST', headers: {'Content-Type': 'application/json'}, body: JSON.stringify({username, email, password, age, gender, country, city, otp}) }); const data = await res.json(); if (data.success && data.otp_sent) { document.getElementById('otp-section').style.display = 'block'; alert('Verification code sent to your email!'); } else if (data.success) { alert('Registration successful! Please login.'); closeRegisterForm(); } else { alert(data.error || 'Registration failed'); } }