Make mobile friendly, add links

This commit is contained in:
Reimar 2026-01-15 15:14:51 +01:00
parent 0276828a2c
commit f8e10f32d0
Signed by: Reimar
GPG Key ID: 93549FA07F0AE268
7 changed files with 15 additions and 5 deletions

View File

@ -21,7 +21,7 @@ export class SpfRecord {
new DomainMechanism("a") new DomainMechanism("a")
.label("Domains") .label("Domains")
.desc("Select the IP address from these domains") .desc("Select the IP address from these domains (or current domain if none specified)")
.value(ValueRequirement.OPTIONAL) .value(ValueRequirement.OPTIONAL)
.multiple() .multiple()
.pos(1), .pos(1),

View File

@ -24,6 +24,7 @@ body {
font-family: "Open Sans", sans-serif; font-family: "Open Sans", sans-serif;
max-width: 800px; max-width: 800px;
margin: auto; margin: auto;
padding: 1rem;
} }
h1, h2 { h1, h2 {

View File

@ -2,6 +2,7 @@
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DMARC Record Creator - Generate DMARC DNS Records</title> <title>DMARC Record Creator - Generate DMARC DNS Records</title>
<link rel="stylesheet" href="/assets/styles/main.css"> <link rel="stylesheet" href="/assets/styles/main.css">
<script type="module" src="/assets/scripts/ui/creator.js"></script> <script type="module" src="/assets/scripts/ui/creator.js"></script>
@ -33,7 +34,8 @@
<center> <center>
<h3>More tools:</h3> <h3>More tools:</h3>
<a href="/dmarc-validator">DMARC Validator Tool</a> <a href="/dmarc-validator">DMARC Validator Tool</a> &bull;
<a href="/spf-creator">SPF Creator Tool</a>
</center> </center>
</main> </main>
</body> </body>

View File

@ -2,6 +2,7 @@
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DMARC Record Validator - Validate DMARC DNS Records</title> <title>DMARC Record Validator - Validate DMARC DNS Records</title>
<link rel="stylesheet" href="/assets/styles/main.css"> <link rel="stylesheet" href="/assets/styles/main.css">
<script type="module" src="/assets/scripts/ui/validator.js"></script> <script type="module" src="/assets/scripts/ui/validator.js"></script>
@ -73,7 +74,8 @@
<center> <center>
<h3>More tools:</h3> <h3>More tools:</h3>
<a href="/dmarc-creator">DMARC Creator Tool</a> <a href="/dmarc-creator">DMARC Creator Tool</a> &bull;
<a href="/spf-validator">SPF Validator Tool</a>
</center> </center>
</main> </main>
</body> </body>

View File

@ -2,6 +2,7 @@
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SPF Record Creator - Generate SPF DNS Records</title> <title>SPF Record Creator - Generate SPF DNS Records</title>
<link rel="stylesheet" href="/assets/styles/main.css"> <link rel="stylesheet" href="/assets/styles/main.css">
<script type="module" src="/assets/scripts/ui/creator.js"></script> <script type="module" src="/assets/scripts/ui/creator.js"></script>
@ -50,7 +51,8 @@
<center> <center>
<h3>More tools:</h3> <h3>More tools:</h3>
<a href="/spf-validator">SPF Validator Tool</a> <a href="/spf-validator">SPF Validator Tool</a> &bull;
<a href="/dmarc-creator">DMARC Creator Tool</a>
</center> </center>
</main> </main>
</body> </body>

View File

@ -2,6 +2,7 @@
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SPF Macro Guide - Explanation of all SPF macros with examples</title> <title>SPF Macro Guide - Explanation of all SPF macros with examples</title>
<link rel="stylesheet" href="/assets/styles/main.css"> <link rel="stylesheet" href="/assets/styles/main.css">
<script type="module" src="/assets/scripts/ui/validator.js"></script> <script type="module" src="/assets/scripts/ui/validator.js"></script>

View File

@ -2,6 +2,7 @@
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SPF Record Validator - Validate SPF DNS Records</title> <title>SPF Record Validator - Validate SPF DNS Records</title>
<link rel="stylesheet" href="/assets/styles/main.css"> <link rel="stylesheet" href="/assets/styles/main.css">
<script type="module" src="/assets/scripts/ui/validator.js"></script> <script type="module" src="/assets/scripts/ui/validator.js"></script>
@ -64,7 +65,8 @@
<center> <center>
<h3>More tools:</h3> <h3>More tools:</h3>
<a href="/spf-creator">SPF Creator Tool</a> <a href="/spf-creator">SPF Creator Tool</a> &bull;
<a href="/dmarc-validator">DMARC Validator Tool</a>
</center> </center>
</main> </main>
</body> </body>