-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.html
55 lines (43 loc) · 1.8 KB
/
app.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Electron Boilerplate</title>
<script>
</script>
<link href="./stylesheets/main.css" rel="stylesheet" type="text/css">
<script src="vendor/electron_boilerplate/env_config.js"></script>
<script src="vendor/electron_boilerplate/context_menu.js"></script>
<script src="vendor/pentest_checklist/app_menu.js"></script>
<script>
var fs = require("fs");
</script>
<script src="app.js"></script>
</head>
<body>
<aside id="content-menu">
</aside>
<div id="container">
<br /><br />
<div id="TestSection" class="file-drop-zone" style="display:block;border:1px solid black; width:100%; height:50px; background-color:#cecece">
Drag your file here
</div>
<h1 id="greet"></h1>
<p class="subtitle">
<label for="project_name">Project Name</label>
<input type="text" id="project_name" name="project_name"/>
<button type="submit" onclick="" value="Go">Go</button>
<br />
Welcome to <a href="http://electron.atom.io" class="js-external-link">Electron</a> app running on this magnificent <strong id="platform-info"></strong> machine.
<a href="/content/00_Information_Gathering/00_Finger_Printing_Webserver.html" class="js-internal-link">link 1.</a>
<a href="/content/00_Information_Gathering/01_Review_Metafiles_for_Information_Leakage.html" class="js-internal-link"> link 2</a>
</p>
<p class="subtitle">
You are in <strong id="env-name"></strong> environment.
</p>
</div>
<script src="vendor/pentest_checklist/persistence.js"></script>
<script src="vendor/pentest_checklist/dropspot.js"></script>
<script src="vendor/electron_boilerplate/external_links.js"></script>
</body>
</html>