-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (33 loc) · 1.15 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Stackoverflow Questions</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="vendor/css/bootstrap.css" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
<script src="js/main.js"></script>
<script type="text/javascript" src="vendor/js/bootstrap.js"></script>
</head>
<body>
<div class="container">
<div id="tags_panel">
<label id="tags_label" for="tags_input">Tags:</label>
<div id="tags_container">
<input id="tags_input" type="text" class="form-control" placeholder="Type comma separated tags here"
onkeyup="processTags(event)">
<span id="tags_text" class="form-control" data-toggle="tooltip" title="Click to edit tags"
onclick="toggleTags(); $(this).parent().find('#tags_input').focus();"></span>
</div>
</div>
<div>
<table id="questions_table" class="table-striped">
<tbody/>
</table>
</div>
<div id="jumbotron" class="jumbotron">
<h1>Enter tags to start</h1>
</div>
</div>
</body>
</html>