-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
154 lines (111 loc) · 6.51 KB
/
index.html
File metadata and controls
154 lines (111 loc) · 6.51 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!doctype html>
<html lang="en">
<head>
<title>Hoot - Meet with everybody</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/main.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
</head>
<body>
<!-- main wrapper-->
<div class="container mainHouse">
<div class="col-md-6 offset-md-3 offline">
<div class="row">
<div class="col-md-12 insideForms">
<!-- List group -->
<div class="list-group" id="myList" role="tablist">
<a class="list-group-item list-group-item-action active" data-toggle="list" href="#login" role="tab">LOGIN</a>
<a class="list-group-item list-group-item-action" data-toggle="list" href="#register" role="tab">REGISTER</a>
</div>
<!-- Tab panes -->
<div class="tab-content">
<!--login box-->
<div class="tab-pane active" id="login" role="tabpanel">
<form action="" class="row loginForm">
<div class="col-md-12">
<input type="text" class="form-control" class="loginEmail" placeholder="Email">
</div>
<div class="col-md-12">
<input type="password" class="form-control" class="loginPassword" placeholder="Password">
</div>
<div class="col-md-12">
<button type="submit" class="btn btn-block">LOGIN</button>
</div>
</form>
</div>
<!--end of logi box-->
<!--register form-->
<div class="tab-pane" id="register" role="tabpanel">
<form action="" class="row registerForm">
<div class="col-md-12">
<input type="text" class="form-control" class="registerEmail" placeholder="Email">
</div>
<div class="col-md-12">
<input type="password" class="form-control" class="registerPassword" placeholder="Password">
</div>
<div class="col-md-12">
<input type="password" class="form-control" class="repeatPassword" placeholder="Password">
</div>
<div class="col-md-12">
<button type="submit" class="btn btn-block">REGISTER</button>
</div>
</form>
</div>
<!--end of register form-->
</div>
</div>
</div>
</div>
<div class="col-md-8 offset-md-2 online">
<div class="row">
<!-- chat area-->
<div class="col-md-12 chatArea">
<div class="row">
<div class="col-md-8 offset-md-2">
<input type="text" class="form-control username">
</div>
<div class="col-md-2">
<button class="btn btn-danger logout">Logout</button>
</div>
<!---group chats-->
<div class="col-md-12 chats">
<div class="row">
<!--chatsGotten-->
<div class="col-md-9 otherChat">
<span>TheOtherUser</span>
<p>This is a chat by the other users</p>
</div>
<div class="col-md-9 offset-md-3 myChat">
<span>MyName</span>
<p>This is a chat by me</p>
</div>
<!--chatsGotten-->
</div>
</div>
<!--end of group chats-->
<!--type your message here-->
<div class="col-md-12">
<textarea name="" id="" cols="30" rows="10" class="form-control sendMsg" placeholder="type a message..."></textarea>
</div>
<!--end of type your message here-->
</div>
</div>
<!--end of chat area-->
</div>
</div>
<!--alerts-->
<div class="col-md-6 offset-md-1 alert alert-danger"></div>
<div class="col-md-6 offset-md-1 alert alert-success"></div>
<!--end of alerts-->
</div>
<!--end of main wrapper-->
<script src="js/jquery.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.js"></script>
<script src="js/index.js"></script>
</body>
</html>