forked from ArtezzaIT/Sharkphin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwave.html
More file actions
73 lines (73 loc) · 2.27 KB
/
Copy pathwave.html
File metadata and controls
73 lines (73 loc) · 2.27 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
<html>
<head>
<title>WAVE</title>
<style>
body {
background-image: url("/WAVE-background.jpg");
background-size: cover;
}
div {
display: table; /* Makes the div only as wide as its content */
background-color: rgba(249, 249, 249, 0.8); /* Slightly transparent background */
border: 1px solid #ccc;
padding: 10px;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
#imagecredit {
position:absolute;
bottom: 10px;
right: 10px;
}
</style>
</head>
<body>
<div>
<h1>Connection Information</h1>
Welcome to the Workflow for Audit Visibilty and Enrichment (WAVE)!<br>
You are connected using ##UPN##
<a href="/logout">Logout</a>
<br>
</div>
<br>
<div>
<h1>Retrieve Audit Log</h1>
<form action="/audit" method="get">
<table>
<tr>
<td>
<label for="duration">Number of Days:</label>
</td>
<td>
<input type="number" id="duration" name="duration" value="30" required>
</td>
</tr>
<tr>
<td>
<label for="user">UPN of User:</label>
</td>
<td>
<input type="text" id="user" name="user" required>
</td>
</tr>
<tr>
<td>
<label for="user">AbuseIPDB API Key:</label>
</td>
<td>
<input type="password" id="aipdb" name="aipdb" required>
</td>
</tr>
<tr>
<td colspan="2">
<button type="submit">Start Audit</button>
</td>
</tr>
</table>
</form>
</div>
<br>
<div id="imagecredit">
<p style="font-size: 75%;">Background image courtesy of <a href="https://technat.codepy.org/">Technical Nature Photos</a>. All rights reserved.</p>
</div>
</body>