-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.php
More file actions
77 lines (71 loc) · 3.08 KB
/
Copy pathadmin.php
File metadata and controls
77 lines (71 loc) · 3.08 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
<?php
require_once '/include/head.php';
?>
<link rel="stylesheet" type="text/css" href="include/admin.css">
<link type="text/css" rel="stylesheet" href="include/matrix.css" >
<script src="include/matrix.js"></script>
<script src="include/admin.js"></script>
</head>
<body>
<div class="main-container">
<div class="main-header">
<h3>Admin Control Panel</h3>
</div>
<div class="main-content">
<div class="cluster-tags-container">
<div class="content-head">
TAG CLUSTERING
</div>
<div class="content-body">
<div class="tag-details">
<div><span>Previous Number of Questions</span> :<span class="pre-ques-count"></span></div>
<div><span>Previous Number of Tags</span> :<span class="pre-tags-count"></span></div>
<div><span>New Number of Questions</span> :<span class="new-ques-count"></span></div>
<div><span>New Number of Tags</span> :<span class="new-tags-count"></span></div>
</div>
<div class="head">PREPARING DATABASE</div>
<div class="btn-container">
<button class="btn prepare-btn" type="button">Prepare table</button>
<button class="btn clearDatas-btn" type="button">Clear Datas</button>
<button class="btn fillDatas-btn" type="button">Fill Datas</button>
<button class="btn findProb-btn" type="button">Find Probability</button>
</div>
<div class="head">PREPARING MATRIX</div>
<div class="btn-container">
<button class="btn displayMatrix-btn" type="button">Display Matrix</button>
<button class="btn norm-btn" type="button">Norm Matrix</button>
<input id="cby" type="text"style="width:20px">
<button class="btn findClusters-btn" type="button" id="threeDee">RUN</button>
<button class="btn displayClusters-btn" type="button">DISPLAY CLUSTERS</button>
</div>
<div class="result-container">
<div class="result-details">
<span>Do you wana run it</span>
<div class="options">
<button class="max-btn">⧉</button>
</div>
</div>
<canvas id="c" style="display:none;"></canvas>
</div>
</div>
</div>
<div class="manage-user-container-wrap">
<button class="manage-user-btn">Manage Moderators</button>
<div class="manage-user-container">
<div class="manage-user-head">
<button type="button" class="mod-update-btn">update</button>
</div>
<div class="manage-user-body">
<div class="user-container">
</div>
</div>
<div class="manage-user-footer"></div>
</div>
</div>
</div>
<div class="main-footer">
FOOTER
</div>
</div>
</body>
</html>