-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_form.html
More file actions
33 lines (33 loc) · 1.05 KB
/
test_form.html
File metadata and controls
33 lines (33 loc) · 1.05 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
<!DOCTYPE html>
<html>
<head>
<title>Test Form Submission</title>
</head>
<body>
<h1>Test LogHawk Form Submission</h1>
<form method="post" action="http://127.0.0.1:8765/">
<div>
<label>Backend Log Folder:</label>
<input type="text" name="backend" value="./custom_backend_logs" required>
</div>
<div>
<label>Frontend Log Folder:</label>
<input type="text" name="frontend" value="./custom_frontend_logs" required>
</div>
<div>
<label>Max Files:</label>
<input type="number" name="max_files" value="3">
</div>
<div>
<label>Max Lines:</label>
<input type="number" name="max_lines" value="500">
</div>
<div>
<input type="hidden" name="preset" value="">
<input type="hidden" name="selected_categories" value="">
<input type="hidden" name="custom_keywords" value="">
<button type="submit">Analyze Logs</button>
</div>
</form>
</body>
</html>