-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
45 lines (39 loc) · 1.72 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
<!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">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="main.css">
<title>Chatty</title>
</head>
<body>
<nav>
<div class="navbar-form navbar navbar-default navbar-fixed-top" id="navForm" role="search" onsubmit="return false;">
<h1>Chatty</h1>
<div class="form-group">
<input type="text" class="form-control" placeholder="New Message -- Press 'Return' to submit." size="75" id="textInput">
</div>
<button type="" class="btn btn-default" id="clearBtn">Clear Messages</button>
</div>
</nav>
<div class="checkboxes">Theme Selection:
<label for="darkTheme">Dark theme</label>
<input id="darkTheme" type="checkbox"></input>
<label for="largeText">Large text</label>
<input id="largeText" type="checkbox"></input>
</div>
<div id=users></div>
<div class="container">
<div id="messages"></div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script type="text/javascript" src="mainIIFE.js"></script>
<script type="text/javascript" src="iife1_load.js"></script>
<script type="text/javascript" src="iife2_generate.js"></script>
<script type="text/javascript" src="iife3_delete.js"></script>
<script type="text/javascript" src="iife4_navinput.js"></script>
<script type="text/javascript" src="options.js"></script>
</body>
</html>