Update webpage

This commit is contained in:
Umut Çamliyurt 2025-01-18 12:08:19 +03:00 committed by Ares
parent 337e4676dc
commit e4f133f39e
2 changed files with 129 additions and 5 deletions

View File

@ -9,8 +9,65 @@
<body>
<div class="container">
<h1>Download Amnesichat</h1>
<p>Click the button below to download the small, simple, and secure messenger</p>
<a href="https://github.com/umutcamliyurt/Amnesichat" target="_blank">Download</a>
<p>Click the button below to download small, simple, and secure messenger</p>
<a href="#download-modal" class="download-button">Download</a>
<div id="footer">
<!-- Main Links -->
<div class="main-links">
<a href="https://github.com/umutcamliyurt/Amnesichat" target="_blank">Source Code</a>
<a href="http://v5wigkntehm3o4v6ssou4nfmnf4u3y6sg22bsspvubov62niztzxhdyd.onion" target="_blank">Onionsite</a>
<a href="http://Amnesichat.i2p/?i2paddresshelper=tlotbwh2e7oqnevnqup5gdzimobjjzmll7c2a2mm6hlbip4a7mzq.b32.i2p" target="_blank">Eepsite</a>
<a href="https://github.com/umutcamliyurt/Amnesichat?tab=readme-ov-file#donate-to-support-development-of-this-project">Donate Monero</a>
</div>
<!-- Privacy Policy and Terms of Service -->
<details id="terms-of-service-section">
<summary>Terms of Service</summary>
<p>By accessing or using Amnesichat, you agree to be bound by the following terms and conditions:</p>
<p>These Terms of Service govern your use of the Amnesichat service. If you do not agree to these terms, you should not use the service.</p>
<p>You agree to use Amnesichat solely for lawful purposes. Prohibited activities include, but are not limited to:</p>
<ul>
<li>Engaging in any form of harassment, abuse, or harmful behavior towards others.</li>
<li>Sharing illegal content or engaging in illegal activities.</li>
<li>Attempting to access, interfere with, or disrupt the service or servers.</li>
<li>Impersonating any person or entity or misrepresenting your affiliation with a person or entity.</li>
</ul>
<p>Amnesichat is not responsible for any loss, damage, or harm resulting from your use of the service or any third-party interactions. Use of the service is at your own risk.</p>
<p>We reserve the right to modify or discontinue the service at any time without notice. We will not be liable for any modification, suspension, or discontinuance of the service.</p>
<p>These Terms of Service shall be governed by and construed in accordance with the laws of Türkiye.</p>
<p>We may update these Terms of Service from time to time. We will notify users of any significant changes by posting a notice on our website. Continued use of the service after changes signifies your acceptance of the new terms.</p>
<p>If you have any questions regarding these Terms of Service, please contact us at nemesisuks@protonmail.com.</p>
</details>
<details>
<summary>Privacy Policy</summary>
<p>Your privacy is important to us. This Privacy Policy outlines how we handle your information when you use our services.</p>
<p>We do not collect, store, or share any personal information or chat logs from users. All messages are temporary and are deleted once the chat session ends.</p>
<p>All communication on Amnesichat is encrypted using industry-standard encryption protocols to ensure your conversations remain private and secure.</p>
<p>Our service does not use cookies or any tracking technologies to collect data about your usage. We do not monitor your activities on our platform.</p>
<p>We may update this Privacy Policy from time to time to reflect changes in our practices. We encourage you to periodically review this page for the latest information on our privacy practices.</p>
<p>If you have any questions about this Privacy Policy or our data practices, please contact us at nemesisuks@protonmail.com.</p>
</details>
</div>
<!-- Modal -->
<div id="download-modal" class="modal">
<div class="modal-content">
<a href="#" class="close-button">&times;</a>
<h2>Installation Instructions</h2>
<pre>
sudo apt update
git clone --depth=1 https://github.com/open-quantum-safe/liboqs-python
cd liboqs-python
sudo apt-get install python3 python3-pip cmake libssl-dev
pip3 install .
cd ..
git clone https://github.com/umutcamliyurt/Amnesichat.git
cd Amnesichat/
pip3 install -r requirements.txt
python3 gui.py
</pre>
</div>
</div>
</body>
</html>

View File

@ -15,6 +15,8 @@ body {
border: 1px solid #333;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
width: 90%;
max-width: 600px;
}
h1 {
font-size: 1.8em;
@ -26,7 +28,7 @@ p {
margin-bottom: 20px;
color: #bdbdbd;
}
a {
a.download-button {
display: inline-block;
text-decoration: none;
color: #ffffff;
@ -34,8 +36,73 @@ a {
padding: 10px 20px;
border-radius: 4px;
font-size: 1em;
margin-bottom: 20px;
transition: background-color 0.3s ease;
}
a:hover {
a.download-button:hover {
background-color: #003c97;
}
}
.main-links a {
display: inline-block;
text-decoration: underline;
margin: 5px 10px;
padding: 0;
background-color: transparent;
color: #ffffff;
font-weight: bold;
transition: color 0.3s ease;
}
.main-links a:hover {
color: #868686;
text-decoration: none;
}
.modal {
display: none;
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.8);
}
.modal:target {
display: block;
}
.modal-content {
background-color: #1e1e1e;
margin: 15% auto;
padding: 20px;
border: 1px solid #333;
border-radius: 8px;
width: 80%;
max-width: 600px;
color: #e0e0e0;
text-align: left;
}
.modal-content pre {
background: #121212;
padding: 10px;
border-radius: 4px;
overflow-x: auto;
}
.close-button {
color: #ffffff;
float: right;
font-size: 24px;
font-weight: bold;
text-decoration: none;
cursor: pointer;
}
.close-button:hover {
color: #f44336;
}