-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (75 loc) · 4.29 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ECDH Chat</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="header">
<div class="header-left">
<button class="btn tree-btn" id="tree-button">Tree</button>
</div>
<div class="header-right">
<button class="btn login-btn" id="login-button">Login</button>
<button class="btn" id="register-button">Register</button>
</div>
</div>
<div class="container">
<div class="info-section" id="info">
<div class="info-text">
<h2>About This Software:</h2>
<p>The ECDH Chat software is a simple, real-time communication platform designed to provide secure and scalable messaging capabilities for individuals and organizations. This software is built on top of a robust architecture that leverages the latest advancements in cryptography, networking, and software development.</p>
<h3>Key Features</h3>
<ul>
<li><strong>End-to-End Encryption</strong>: Utilizes Elliptic Curve Diffie-Hellman (ECDH) key exchange protocol to establish secure and private communication channels.</li>
<li><strong>Real-Time Messaging</strong>: Supports real-time messaging through WebSockets for instant communication.</li>
<li><strong>Scalability</strong>: Designed to scale horizontally with a distributed architecture.</li>
<li><strong>OAuth Authentication</strong>: Supports OAuth for seamless and secure user authentication.</li>
<li><strong>RabbitMQ Messaging Queue</strong>: Ensures efficient and reliable message delivery.</li>
<li><strong>SQLite Database</strong>: Uses SQLite for reliable and scalable data storage.</li>
</ul>
<h3>Technical Details:</h3>
<ul>
<li><strong>Programming Languages</strong>: Built using Python with Flask for the backend; HTML, CSS, and JavaScript for the frontend.</li>
<li><strong>Dependencies</strong>: Relies on Flask, Flask-SocketIO, Flask-OAuthlib, pika, ecdh, and sqlite3.</li>
<li><strong>Dockerization</strong>: Containerized using Docker for easy deployment across platforms.</li>
</ul>
<h3>System Requirements:</h3>
<ul>
<li><strong>Operating System</strong>: Compatible with Windows, macOS, and Linux.</li>
<li><strong>Hardware</strong>: Requires a minimum of 2GB RAM and 2GB disk space.</li>
<li><strong>Network</strong>: Requires a stable internet connection.</li>
</ul>
<h3>Security Features:</h3>
<ul>
<li><strong>Encryption</strong>: End-to-end encryption for data and messages.</li>
<li><strong>Authentication</ li><strong>Authentication</strong>: OAuth authentication for user verification.</li>
</ul>
<p>This ECDH Chat software is a secure and scalable real-time communication platform that provides a robust and reliable messaging solution for individuals and organizations. Its use of end-to-end encryption, OAuth authentication, and RabbitMQ messaging queue ensures that user data and messages are protected and delivered efficiently. The software's scalability and flexibility make it an ideal solution for a wide range of use cases, from personal messaging to enterprise communication.</p>
</div>
</div>
<div class="right-section">
<button class="btn download-btn" id="download-button">Download ECDH client</button>
<p>Download the open source</p>
<p>ECDH Client from Github!</p>
</div>
</div>
<script>
document.getElementById('login-button').addEventListener('click', () => {
window.location.href = 'src/doc/login/index.html';
});
document.getElementById('register-button').addEventListener('click', () => {
window.location.href = 'src/doc/register/index.html';
});
document.getElementById('tree-button').addEventListener('click', () => {
window.location.href = 'src/doc/tree/index.html';
});
document.getElementById('download-button').addEventListener('click', () => {
const downloadUrl = 'https://github.com/<release-link>'; // will add a link to the relases when this software is done
window.location.href = downloadUrl;
});
</script>
</body>
</html>