-
Notifications
You must be signed in to change notification settings - Fork 0
/
category.html
143 lines (115 loc) · 4.76 KB
/
category.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
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>TestCube-Category</title>
<link rel="stylesheet" href="css/category.css" type="text/css">
<script type="text/javascript" language="javascript">
function showpopup()
{
var fade = document.getElementById('fade');
var add_test = document.getElementById('add_new_test');
fade.style.display="block";
add_test.style.display="block";
}
function closepopup()
{
var fade = document.getElementById('fade');
var add_test = document.getElementById('add_new_test');
fade.style.display="none";
add_test.style.display="none";
}
</script>
</head>
<body>
<div id="wrapper">
<div id="header">
<div id="logo">
<img src="images/logo.png" alt="logo" /> <span>TestCube</span>
</div>
<div id="header-menu1">
<p
style="width: 50px; padding-top: 5px; padding-left: 20px; margin-top: 13px;">Logout</p>
</div>
<div id="header-menu2">
<img src="images/username-user.png" alt="username" />
<p>Deepak Garg</p>
</div>
<div id="header-menu3">
<p style="padding-top: 5px; padding-left: 25px; margin-top: 14px;">Welcome</p>
</div>
<div id="header-menu4">
<img src="images/help.png" alt="help" />
</div>
</div>
<div id="menu-bar">
<div class="menu-bar-items menu-bar-home">
<img src="images/home.png" alt="home" /> <span>Home</span>
</div>
<div class="menu-bar-items">
<img src="images/tests.png" alt="tests" /> <span>Tests</span>
</div>
<div class="menu-bar-items menu-bar-items1">
<img src="images/questions.png" alt="questions" /> <span>Questions</span>
</div>
<div class="menu-bar-items menu-bar-items1">
<img src="images/categories.png" alt="categories" /> <span>Categories</span>
</div>
<div class="menu-bar-items menu-bar-items1">
<img src="images/certificates.png" alt="certificates" /> <span>Certificates</span>
</div>
<div class="menu-bar-items">
<img src="images/results.png" alt="results" /> <span>Results</span>
</div>
</div>
<div id="search_delete_add">
<input type="text" id="search-box" placeholder="Search...">
<input type="image" id ="search-button" src="images/search.png" alt="submit">
<a href="#" onClick="showpopup()"><img src="images/add.png"></a>
<a href="#"><img src="images/delete.png"></a>
</div>
<div id="test_list">
<table>
<thead>
<tr>
<th></th>
<th class="left">Category</th>
<th class="actions">Actions</th>
</tr>
</thead>
<tbody>
<tr>
<td><input type="checkbox"></td>
<td class="left">HTML</td>
<td class="actions"><img src="images/add.png"><img src="images/edit.png"><img src="images/view.png"></td>
</tr>
<tr>
<td><input type="checkbox"></td>
<td class="left">My Sql</td>
<td class="actions"><img src="images/add.png"><img src="images/edit.png"><img src="images/view.png"></td>
</tr>
<tr>
<td><input type="checkbox"></td>
<td class="left">JavaScript</td>
<td class="actions"><img src="images/add.png"><img src="images/edit.png"><img src="images/view.png"></td>
</tr>
</tbody>
</table>
</div>
<div id="footer">
<span>Copyright @ Osscube.com</span>
</div>
</div>
<div id="fade"></div>
<div id="add_new_test" class="popup">
<div id="add_new_test_heading" class="popup_heading">
<span>Add New Category</span>
</div>
<div id="add_new_test_input">
<span>Category Name</span>
<input type="text" id="newtest" name="newtest">
<input type="submit" id="button" value="Add Category">
</div>
</div>
</body>
</html>