17 lines
496 B
HTML
17 lines
496 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>DMARC Report Viewer</title>
|
|
<link rel="stylesheet" href="css/style.css">
|
|
</head>
|
|
<body>
|
|
<div class="form-container">
|
|
<form action="upload.php" method="post" enctype="multipart/form-data">
|
|
<label for="dmarcReport">Select DMARC XML Report:</label>
|
|
<input type="file" name="dmarcReport" id="dmarcReport">
|
|
<input type="submit" value="Upload Report" name="submit">
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|