-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLetsChat.html
44 lines (39 loc) · 1.36 KB
/
LetsChat.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
<!DOCTYPE html>
<html>
<head>
<title>LetsChat</title>
<link href="https://fonts.googleapis.com/css?family=Yeon+Sung&display=swap" rel="stylesheet"><meta name="viewport" content="width=device-width, initial-scale=1">
<link rel='icon' href='favicon.ico' type='image/x-icon'/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="LetsChat.js"></script>
</head>
<body>
<center>
<h1 class="header">
Web LetsChat 2.0 <sup>
</sup>
</h1>
<div class="login">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12 intro">
<img src="" class="logo">
<br>
<h3 >Connect with friends all around the world with Web LetsChat 2.0!</h3>
<h4 >Realtime messages...encrypted</h4>
</div>
<div class="col-lg-4 col-md-6 col-sm-6 col-xs-11 login_div">
<div class="form-group">
<br>
<br><br>
<label >Display Name:</label>
<input type="text" id="user_name" class="form-control" placeholder="Display Name" style="font-size: 20px;">
</div>
<button id="login_button" class="btn" onclick="addUser()">Log in</button>
<br><br>
</div>
</div>
</center>
</body>
</html>