Amnezichat/server/static/index.html

151 lines
5.8 KiB
HTML
Raw Normal View History

2025-05-06 21:30:54 -05:00
<!doctype html>
2025-01-19 01:55:12 +03:00
<html lang="en">
2025-05-06 21:30:54 -05:00
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<title>Amnezichat</title>
<link rel="stylesheet" href="/static/styles.css" />
</head>
<body>
<div
class="bg-gray-900 h-screen flex flex-col items-center justify-center text-white"
>
2025-05-07 00:16:14 -05:00
<h1
class="h-14 bg-linear-65 from-purple-500 to-pink-500 text-6xl font-bold text-transparent bg-clip-text"
>
Amnezichat
</h1>
<p>
Anti-forensic and secure messaging. Download it now and get
started. Intended for secure chats that
<span
class="bg-gradient-to-r from-pink-200 to-transparent inline-block text-transparent bg-clip-text"
>disappear when you're done.</span
>
</p>
<br />
<a
href="#download"
class="bg-linear-65 from-blue-500 to-blue-600 hover:from-blue-600 hover:to-blue-500 text-white font-semibold py-2 px-6 rounded-full transition duration-300 text-2xl m-5"
>Download Now</a
>
<br />
<br />
<!-- Main Links -->
<br />
<!-- Privacy and Terms -->
<details id="terms-of-service-section" class="pt-3">
<summary
class="bg-gray-950 p-3 rounded-lg cursor-pointer shadow"
>
Terms of Service
</summary>
<p>By using Amnezichat, you agree to the following terms:</p>
<ul>
<li>Use for lawful purposes only.</li>
<li>Do not share illegal content.</li>
<li>Respect others while using the platform.</li>
</ul>
2025-05-06 21:30:54 -05:00
<p>
2025-05-07 00:16:14 -05:00
Amnezichat reserves the right to modify or discontinue the
service without notice.
2025-05-06 21:30:54 -05:00
</p>
2025-05-07 00:16:14 -05:00
<small class="text-gray-500">
We can't actually enforce these. Please keep them in mind
though.
</small>
<p>Contact: nemesisuks@protonmail.com</p>
</details>
<details class="pt-3 pb-3">
<summary
class="bg-gray-950 p-3 rounded-lg cursor-pointer shadow"
>
Privacy Policy
</summary>
<p>We value your privacy:</p>
<ul>
<li>No personal information or chat logs are stored.</li>
<li>
Messages are
<span class="text-green-400">encrypted</span> and
<span class="text-green-400">temporary</span>.
</li>
</ul>
</details>
<br />
<!-- Main Links -->
2025-05-07 00:51:30 -05:00
<small>
<div class="main-links">
<a
href="https://github.com/umutcamliyurt/Amnezichat"
target="_blank"
class="text-blue-300 hover:text-blue-400 transition duration-300"
>Source Code</a
>
<a
href="http://aqfyl6g24k44oyes3n35nrnlhdfvdwfvi4a7umjalu4dcstuzkxft4id.onion"
target="_blank"
class="text-blue-300 hover:text-blue-400 transition duration-300"
>Onionsite</a
>
<a
href="http://epmrgx35crapamcxlpggowr7vg3fbxosmkow66konjomn4nlphda.b32.i2p"
target="_blank"
class="text-blue-300 hover:text-blue-400 transition duration-300"
>Eepsite</a
>
<a
href="https://github.com/umutcamliyurt/Amnezichat?tab=readme-ov-file#donate-to-support-development-of-this-project"
class="text-blue-300 hover:text-blue-400 transition duration-300"
>Donate Monero</a
>
</div>
</small>
2025-05-07 00:16:14 -05:00
</div>
2025-01-19 01:55:12 +03:00
2025-05-07 00:16:14 -05:00
<div
id="download"
class="bg-gray-900 h-screen flex flex-col items-center justify-center text-white"
>
<div class="modal-content">
<h2
class="bg-linear-65 from-purple-500 to-pink-500 text-2xl font-bold text-transparent bg-clip-text"
>
Installation Instructions
</h2>
2025-01-19 01:55:12 +03:00
2025-05-07 00:16:14 -05:00
<h3>Build it Yourself</h3>
<pre>
2025-01-19 01:55:12 +03:00
sudo apt update
2025-05-02 00:58:21 +03:00
sudo apt install curl build-essential git tor xterm
2025-01-19 01:55:12 +03:00
sudo systemctl enable --now tor.service
curl https://sh.rustup.rs -sSf | sh -s -- -y
git clone https://github.com/umutcamliyurt/Amnezichat.git
cd Amnezichat/client/
cargo build --release
cargo run --release
2025-05-06 21:30:54 -05:00
</pre
2025-05-07 00:16:14 -05:00
>
2025-04-19 13:30:28 +03:00
2025-05-07 00:16:14 -05:00
<h3 class="pb-3">Or:</h3>
<a
href="/static/Amnezichat-x86_64.AppImage"
class="bg-blue-300 hover:bg-blue-400 text-gray-900 py-2 px-6 rounded-full transition duration-300"
download
>Download AppImage</a
>
<a
href="/static/Amnezichat-x86_64.deb"
class="bg-blue-300 hover:bg-blue-400 text-gray-900 py-2 px-6 rounded-full transition duration-300"
download
>Download .deb Package</a
>
2025-05-06 21:30:54 -05:00
</div>
</div>
</body>
2025-01-19 01:55:12 +03:00
</html>