-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
88 lines (73 loc) · 3.35 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/css/bootstrap.min.css" integrity="sha384-xOolHFLEh07PJGoPkLv1IbcEPTNtaed2xpHsD9ESMhqIYd0nLMwNLD69Npy4HI+N" crossorigin="anonymous">
<title>Fizzy</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<base href="/src/frontend/" />
<script type="module" src="js/dashboard.js"></script>
</head>
<body>
<script id="navbar" src="js/nav.js"></script>
<div class="row">
<link rel="stylesheet" href="css/notes.css">
<script type="module" id="notes_script" src="js/notes.js"></script>
<div class="col-md-3 solid-black-border-right" id="view1">
<div class="notes-listing">
<ul id='notes'></ul>
</div>
<input class="mytext" id="cur_note" placeholder="Type a message!"/>
<input type='button' onClick="send_note()" value="Send">
</div>
<div class="col-md-6" id="view2">
<table class="table table-hover">
<thead>
<tr>
<th scope="col">Role</th>
<th scope="col">Id</th>
<th scope="col">Handle</th>
</tr>
</thead>
<tbody id="user_table">
</tbody>
</table>
<br>
<br>
<table class="table table-hover" id="project_table">
<thead>
<tr>
<th scope="col">Project</th>
<th scope="col">Fuzzer</th>
<th scope="col">Target</th>
<th scope="col">Input_Dir</th>
<th scope="col">Output_Dir</th>
<th scope="col">Timestamp</th>
</tr>
</thead>
</table>
<input type="text" id="project_name" placeholder="project-name">
<input type="text" id="fuzzer_name" placeholder="fuzzer-name">
<input type="text" id="bin_path" placeholder="target-bin-path">
<input type="text" id="in_dir" placeholder="fuzzer-in-dir">
<input type="text" id="out_dir" placeholder="fuzzer-out-dir">
<button type="button" class="btn btn-primary" data-dismiss="modal" id="project_submit">
Submit
</button>
</div>
<div class="col-md-2" id="view2">
<table class="table table-hover" id="stat_table">
<thead>
<tr>
<th scope="col"></th>
<th scope="col"></th>
</tr>
</thead>
</table>
</div>
</div>
</body>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.5.1/dist/jquery.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-Fy6S3B9q64WdZWQUiU+q4/2Lc9npb8tCaSX9FK7E8HnRr0Jz8D6OP9dO5Vg3Q9ct" crossorigin="anonymous"></script>
<script type="module" src="js/util.js"></script>
</html>