-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (68 loc) · 3.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta name="description" content="end-2-end encrypted chat app" />
<meta
name="ishivanshgoel"
content="end-2-end encrypted chat app"
/>
<meta name="generator" content="Hugo 0.88.1" />
<title>Secret Chat - Landing Page</title>
<link
rel="canonical"
href="https://getbootstrap.com/docs/4.6/examples/sign-in/"
/>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<meta name="theme-color" content="#563d7c" />
<link
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css"
rel="stylesheet"
/>
<link href="./css/index.css" rel="stylesheet" />
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light" style="padding: 10px;">
<a class="navbar-brand" href="#">🛡️ Secure Chat</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="https://ishivanshgoel.github.io/securechat/signin">🧑 Sign-In</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://ishivanshgoel.github.io/securechat/signup">🚪 Sign-Up</a>
</li>
</ul>
</div>
</nav>
<div class="jumbotron" style="padding: 20px;">
<h1 class="display-4"> 🛡️ Secure Chat!</h1>
<p class="lead">End-to-end encrypted messaging app</p>
<hr class="my-4">
<p>
1. End-to-end encrypted messaging means that the users within that specific chat can only read messages sent between two people </p>
<p>2. To enable this, the messages that are sent are encrypted before leaving a user's device, and can only be decrypted by the intended recipient (end-user).</p>
<p>3. Real-time chat applications have grown tremendously. Most organizations have adopted them for communication. For security reasons, the messages exchanged over the network must be encrypted.</p>
<p class="lead">
<a class="btn btn-primary btn-lg" href="https://github.com/ishivanshgoel/securechat" target="_blank" role="button">Learn more 📙</a>
</p>
</div>
<footer class="footer">
<div class="container">
<span class="text-muted" style="text-align: center;">© ishivanshgoel</span>
</div>
</footer>
</body>
</html>