-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprogrammer-chat.html
51 lines (47 loc) · 2.22 KB
/
programmer-chat.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" type="text/css" href="css/semantic.min.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/base.css">
<title>Service</title>
</head>
<body>
<nav class="navbar fixed-top navbar-light bg-light justify-content-between">
<a href="manager.html" class="navbar-brand">Lil Noob</a>
<button id="logoutBtn" class="btn btn-outline-success my-2 my-sm-0" type="submit">LOG OUT</button>
</nav>
<div class="container big">
<div class="row">
<div class="col">
<div class="card chatbox">
<div class="card-header">
TALK WITH A REAL PROGRAMMER
</div>
<div class="content-card">
</div>
<div class="card-footer text-muted">
<div class="input-group mb-3">
<input id="userInput2" type="text" class="form-control" placeholder="Write something"
aria-label="User's input" aria-describedby="basic-addon2">
<div class="input-group-append">
<button id="sendBtnProg" class="btn btn-outline-secondary" type="button">Send</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="https://code.jquery.com/ui/1.12.0/jquery-ui.js" integrity="sha256-0YPKAwZP7Mp3ALMRVB2i8GXeEndvCq3eSl/WsAl1Ryk="
crossorigin="anonymous"></script>
<script src="js/semantic.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js"></script>
<script src="js/programmer.js"></script>
<script src="js/main.js"></script>
<script src="js/logout.js"></script>
</body>
</html>