22 lines
613 B
HTML
22 lines
613 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>Phishing Email Detector</title>
|
||
|
<script src="popup.js" defer></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="login-section">
|
||
|
<h2>Login</h2>
|
||
|
<input type="text" id="username" placeholder="Username">
|
||
|
<input type="password" id="password" placeholder="Password">
|
||
|
<button id="login">Login</button>
|
||
|
</div>
|
||
|
<div id="control-section" style="display: none;">
|
||
|
<button id="check-mail">Check Mail</button>
|
||
|
<button id="logout">Logout</button>
|
||
|
</div>
|
||
|
<div id="results"></div>
|
||
|
</body>
|
||
|
</html>
|