PhishGuardian/extension/notification.html

18 lines
494 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Notification</title>
<script src="notification.js" defer></script>
</head>
<body>
<div id="notification-content">
<p id="notification-message"></p>
<button id="mark-safe">Mark as Safe</button>
<button id="move-trash">Move to Trash</button>
<button id="close">Close</button>
</div>
</body>
</html>