-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsprawdzeniephi.html
More file actions
37 lines (31 loc) · 1.22 KB
/
sprawdzeniephi.html
File metadata and controls
37 lines (31 loc) · 1.22 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
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Praca Inżynierska</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
<script src="skrypty.js" defer></script>
</head>
<body>
<header>
<h1>Projekt narzędzia do analizy phisingu i implementacja w technologi JavaScript</h1>
<div id="nav-placeholder"></div>
</header>
<main>
<section id="phi">
<h2>Wykrywanie potencjalnego phishingu, wklej treść e-maila poniżej:</h2>
<form id="phishing-form">
<textarea id="email-content" rows="8" cols="60" placeholder="Wklej e-mail tutaj"></textarea><br>
<button type="submit">Sprawdź</button>
</form>
<div id="result" style="margin-top:20px;"></div>
<script src="phishingrozpoznanie.js"></script>
</section>
</main>
<footer>
<p>© 2025 Praca Inżynierska - Rafał Krajewski</p>
</footer>
</body>
</html>