index.html
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> 6 <title>Amnezichat</title> 7 <link rel="stylesheet" href="/static/styles.css"> 8 </head> 9 <body> 10 <div class="container"> 11 <h1>Download Amnezichat</h1> 12 <p>Anti-forensic and secure messaging. Download it now and get started.</p> 13 <a href="#download" class="download-button">Download Now</a> 14 15 <div id="footer"> 16 <!-- Main Links --> 17 <div class="main-links"> 18 <a href="https://github.com/umutcamliyurt/Amnezichat" target="_blank">Source Code</a> 19 <a href="http://aqfyl6g24k44oyes3n35nrnlhdfvdwfvi4a7umjalu4dcstuzkxft4id.onion" target="_blank">Onionsite</a> 20 <a href="http://tlotbwh2e7oqnevnqup5gdzimobjjzmll7c2a2mm6hlbip4a7mzq.b32.i2p" target="_blank">Eepsite</a> 21 <a href="https://github.com/umutcamliyurt/Amnezichat?tab=readme-ov-file#donate-to-support-development-of-this-project">Donate Monero</a> 22 </div> 23 24 <!-- Privacy and Terms --> 25 <details id="terms-of-service-section"> 26 <summary>Terms of Service</summary> 27 <p>By using Amnezichat, you agree to the following terms:</p> 28 <ul> 29 <li>Use for lawful purposes only.</li> 30 <li>Do not share illegal content.</li> 31 <li>Respect others while using the platform.</li> 32 </ul> 33 <p>Amnezichat reserves the right to modify or discontinue the service without notice.</p> 34 <p>Contact: nemesisuks@protonmail.com</p> 35 </details> 36 37 <details> 38 <summary>Privacy Policy</summary> 39 <p>We value your privacy:</p> 40 <ul> 41 <li>No personal information or chat logs are stored.</li> 42 <li>Messages are encrypted and temporary.</li> 43 </ul> 44 </details> 45 </div> 46 </div> 47 48 <!-- Modal --> 49 <div id="download" class="modal"> 50 <div class="modal-content"> 51 <a href="#" class="close-button">×</a> 52 <h2>Installation Instructions</h2> 53 54 <!-- Build it yourself --> 55 <h3>Build it Yourself</h3> 56 <pre> 57 sudo apt update 58 sudo apt install curl build-essential git tor 59 sudo systemctl enable --now tor.service 60 curl https://sh.rustup.rs -sSf | sh -s -- -y 61 git clone https://github.com/umutcamliyurt/Amnezichat.git 62 cd Amnezichat/client/ 63 cargo build --release 64 cargo run --release 65 </pre> 66 </div> 67 </div> 68 </body> 69 </html>