-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #70 from userjack6880/dev
Dev
- Loading branch information
Showing
17 changed files
with
711 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -476,3 +476,7 @@ span.unknown { | |
vertical-align: middle; | ||
line-height: normal; | ||
} | ||
|
||
span.signed { | ||
color: #fff; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<?php | ||
/* ---------------------------------------------------------------------------- | ||
Open DMARC Analyzer - Open Source DMARC Analyzer | ||
Copyright (C) 2022 - John Bradley (userjack6880) | ||
templates/openda/footer.php | ||
footer for the Open DMARC Analyzer default template | ||
Available at: https://github.com/userjack6880/Open-DMARC-Analyzer | ||
------------------------------------------------------------------------------- | ||
This file is part of Open DMARC Analyzer. | ||
Open DMARC Analyzer is free software: you can redistribute it and/or modify it under | ||
the terms of the GNU General Public License as published by the Free Software | ||
Foundation, either version 3 of the License, or (at your option) any later | ||
version. | ||
This program is distributed in the hope that it will be useful, but WITHOUT ANY | ||
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A | ||
PARTICULAR PURPOSE. See the GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License along with | ||
this program. If not, see <https://www.gnu.org/licenses/>. | ||
---------------------------------------------------------------------------- */ | ||
|
||
?> | ||
|
||
</div> | ||
<div id="footer"> | ||
<p> | ||
<a href="https://github.com/userjack6880/Open-DMARC-Analyzer">Open DMARC Analyzer</a> <?php oda_version(); ?><br /> | ||
<a href="https://systemanomaly.com/codebase"><img src="templates/openda_light/codebase_logo.png" alt="Anomaly <Codebase>" height="50px"></a> | ||
</p> | ||
</div> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
<?php | ||
/* ---------------------------------------------------------------------------- | ||
Open DMARC Analyzer - Open Source DMARC Analyzer | ||
Copyright (C) 2022 - John Bradley (userjack6880) | ||
templates/openda/header.php | ||
header for the Open DMARC Analyzer default template | ||
Available at: https://github.com/userjack6880/Open-DMARC-Analyzer | ||
------------------------------------------------------------------------------- | ||
This file is part of Open DMARC Analyzer. | ||
Open DMARC Analyzer is free software: you can redistribute it and/or modify it under | ||
the terms of the GNU General Public License as published by the Free Software | ||
Foundation, either version 3 of the License, or (at your option) any later | ||
version. | ||
This program is distributed in the hope that it will be useful, but WITHOUT ANY | ||
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A | ||
PARTICULAR PURPOSE. See the GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License along with | ||
this program. If not, see <https://www.gnu.org/licenses/>. | ||
---------------------------------------------------------------------------- */ | ||
|
||
?> | ||
|
||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="stylesheet" type="text/css" href="templates/openda_light/style.css" /> | ||
<style type="text/css"> | ||
@media (max-width:1230px) { | ||
#header { | ||
width: 1230px; | ||
} | ||
#controlbar { | ||
width: 1230px; | ||
} | ||
#wrapper { | ||
width: 1230px; | ||
} | ||
} | ||
</style> | ||
|
||
<script type="text/javascript"> | ||
<?php javascript(); ?> | ||
</script> | ||
<title><?php page_title($page, $domain); ?></title> | ||
</head> | ||
<body> | ||
<div id="header"> | ||
<a href="index.php"><h1 class="header">Open DMARC Analyzer</h1></a> | ||
</div> | ||
<?php control_bar($page, $domain, $dateRange, $ip); ?> | ||
<div id="wrapper"> | ||
|
Oops, something went wrong.