-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (45 loc) · 1.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="styles.css">
</head>
<body ng-controller="testCtrl" class='m-2'>
<h1 id='title'>Chatter </h1>
<div>
<div id='login-box'>
<input type="text" placeholder='Email' id="email">
<input type="password" placeholder="Password" id="password">
<button class='btn btn-primary' id="register">Register</button>
<button class='btn btn-secondary' id='sign-in'>Sign In</button>
</div>
<div id="app">
<input type="text" placeholder='Type message' id="inputMessage" maxlength='141'><br><br>
<button class='btn btn-primary' id='button'>Send Message </button>
<button class='btn btn-danger' id='clearChats'>Delete History </button>
<br>
<span>
<h2>Double-click a message to edit</h2>
</span>
</div>
</div>
<div id="all-chats">
<ul id='list-of-chats'>
</ul>
</div>
<div id="all-users">
<h2>All Users</h2>
<ul id="list-of-users">
</ul>
</div>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src='script.js' type='module'></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</html>