-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPrototype Code 1
More file actions
97 lines (88 loc) · 3.8 KB
/
Copy pathPrototype Code 1
File metadata and controls
97 lines (88 loc) · 3.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Helpdesk Prototype Team 11</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<style>
.container-fluid{
display:flex;
margin: 0 -15px;
}
.nav.nav-pill.nav-stacked{
width:15%
}
#main-content{
width:85%;
padding:0 15px;
}
</style>
</head>
<body>
<!-- First layer of tabs -->
<div class="container-fluid" id="container">
<ul class="nav nav-pills nav-stacked" id="navigation-bar">
<li class="active"><a data-toggle="pill" href="#add">Add Project</a></li>
<li><a data-toggle="pill" href="#projects">Projects</a></li>
<li><a data-toggle="pill" href="#specialists">Specialists</a></li>
<li><a data-toggle="pill" href="#lol">IDK LOL</a></li>
</ul>
<!-- First layer of tabs content -->
<div class="tab-content">
<!-- Add Project Tab -->
<div id="add" class="tab-pane fade in active">
<h3>Add Project http://getbootstrap.com/docs/4.0/components/forms/</h3>
<!-- Second layer of tabs- horizontal ones inside the add project tab -->
<ul class="nav nav-tabs">
<li class="active"><a href="#first" data-toggle="tab">First</a></li>
<li><a href="#second" data-toggle="tab">Second</a></li>
<li><a href="#third" data-toggle="tab">Third</a></li>
</ul>
<!-- Second layer of tabs content -->
<div class="tab-content" id="main-content">
<div id="first" class="tab-pane active">
<!--Form with text boxes for entry -->
<form>
<div class="form-group">
<label for="caller">Caller Name</label>
<input type="text" class="form-control" id="caller" placeholder="Mr Blobby">
<label for="operator">Helpdesk Operator</label>
<input type="text" class="form-control" id="operator" placeholder="Alice">
<label for="time">Call Time</label>
<input type="text" class="form-control" id="time" placeholder="1853">
<label for="serial">Serial Number of Affected Hardware</label>
<input type="text" class="form-control" id="serial" placeholder="BZ5632">
<label for="os">Operating System</label>
<input type="text" class="form-control" id="os" placeholder="IOSX (cause it is bad)">
<label for="software">Software Affected</label>
<input type="text" class="form-control" id="software" placeholder="Mac Boooook">
<label for="reason">Reason for Call</label>
<input type="text" class="form-control" id="reason" placeholder="He is very stress">
<label for="type">Problem Type</label>
<input type="text" class="form-control" id="type" placeholder="This should be drop down box">
</div>
</form>
</div>
<!-- The other horizontal tabs in add project -->
<div id="second" class="tab-pane">Content of second</div>
<div id="third" class="tab-pane">Content of third</div>
</div>
<!-- The other vertical tabs -->
</div>
<div id="projects" class="tab-pane fade">
<h3>Projects</h3>
<p>Project table here</p>
</div>
<div id="specialists" class="tab-pane fade">
<h3>Specialists</h3>
<p>Specialists table here</p>
</div>
<div id="lol" class="tab-pane fade">
<h3>lol</h3>
<p>Another one</p>
</div>
</div>
</div>
</body>
</html>