From 4ca64952bce196c8e899ccdcc562d6f61e26de01 Mon Sep 17 00:00:00 2001
From: Bob Mottram <bob@freedombone.net>
Date: Sun, 28 Oct 2018 13:59:07 +0000
Subject: [PATCH] Help for dynamic dns

---
 webadmin/EN/dynamicdns_template.html |   1 +
 webadmin/EN/help_dynamicdns.html     | 152 +++++++++++++++++++++++++++
 webadmin/dynamicdns.php              |   4 +
 3 files changed, 157 insertions(+)
 create mode 100644 webadmin/EN/help_dynamicdns.html

diff --git a/webadmin/EN/dynamicdns_template.html b/webadmin/EN/dynamicdns_template.html
index 87795fac0..fb11db405 100644
--- a/webadmin/EN/dynamicdns_template.html
+++ b/webadmin/EN/dynamicdns_template.html
@@ -173,6 +173,7 @@
           <label translate="yes">Authentication Token</label>: <input type="text" name="ddnscode" value="DDNS_CODE"><br><br>
           <br>
           <input type="submit" name="submitddnscancel" translate="yes" value="Cancel">
+          <input type="submit" name="submitddnshelp" translate="yes" value="Help">
           <input type="submit" name="submitddns" translate="yes" value="Continue">
         </form>
 
diff --git a/webadmin/EN/help_dynamicdns.html b/webadmin/EN/help_dynamicdns.html
new file mode 100644
index 000000000..fb714d8c1
--- /dev/null
+++ b/webadmin/EN/help_dynamicdns.html
@@ -0,0 +1,152 @@
+<!DOCTYPE html>
+<html lang="en">
+  <meta charset="utf-8">
+  <style>
+    body {
+        margin: 0;
+        font-family: Arial;
+        background-color: white;
+        color: black;
+    }
+
+    * {
+        box-sizing: border-box;
+    }
+
+    a, u {
+        text-decoration: none;
+        color: #72a7cf;
+        font-weight: bold;
+    }
+
+    a:visited{
+        color: #72a7cf;
+        font-weight: bold;
+    }
+
+    #headerpic {
+        width: 60%;
+        height: auto;
+        margin-right : auto;
+        margin-left : auto;
+        min-width : 220px;
+    }
+
+    .header {
+        text-align: center;
+        padding: 32px;
+    }
+
+    .headertext {
+        text-align: center;
+        font-size: 120%;
+        font-weight: bold;
+    }
+
+    .subheadertext {
+        margin-left : 10%;
+        text-align: left;
+        font-size: 110%;
+        font-weight: bold;
+    }
+
+    .subheaderports {
+        margin-left : 10%;
+        text-align: left;
+        font-size: 110%;
+        font-weight: bold;
+    }
+
+    .helptext {
+        width: 80%;
+        text-align: left;
+        font-size: 100%;
+        margin-left : 10%;
+    }
+
+    .codetext {
+        font-family: Courier;
+        width: 80%;
+        text-align: left;
+        font-size: 100%;
+        margin-left : 10%;
+    }
+
+    .portstext {
+        width: 80%;
+        text-align: left;
+        font-size: 100%;
+        margin-left : 10%;
+    }
+
+    .row {
+        display: -ms-flexbox;
+        display: flex;
+        -ms-flex-wrap: wrap;
+        flex-wrap: wrap;
+        padding: 0 4px;
+    }
+
+    .column {
+        -ms-flex: 25%;
+        flex: 15%;
+        max-width: 25%;
+        padding: 0 4px;
+    }
+
+    .column img {
+        margin-top: 8px;
+        vertical-align: middle;
+    }
+
+    @media screen and (max-width: 800px) {
+        .column {
+            -ms-flex: 50%;
+            flex: 50%;
+            max-width: 50%;
+        }
+    }
+
+    @media screen and (max-width: 200px) {
+        .column {
+            -ms-flex: 100%;
+            flex: 100%;
+            max-width: 100%;
+        }
+    }
+  </style>
+  <body>
+
+    <div class="header">
+      <a href="dynamicdns.html"><img id="headerpic" class="img-responsive" src="images/logo.png" alt="Freedombone"></a>
+    </div>
+
+    <p class="headertext" translate="yes">Dynamic DNS</p>
+
+    <p class="subheadertext" translate="yes">Authentication Token</p>
+
+    <p class="helptext" translate="yes">This is only needed if you're using FreeDNS. Otherwise you can leave it blank.</p>
+
+    <p class="subheadertext" translate="yes">FreeDNS</p>
+
+    <p class="helptext" translate="yes">On the site where you obtained your domain name set up some custom nameservers as follows:</p>
+
+    <p class="codetext" translate="no">
+      NS1.AFRAID.ORG<br>
+      NS2.AFRAID.ORG<br>
+      NS3.AFRAID.ORG<br>
+      NS4.AFRAID.ORG
+    <p>
+
+    <p class="helptext" translate="yes">On the FreeDNS site go to the "Dynamic DNS" section and make sure that "link updates of the same IP together" is set to ON.</p>
+
+    <p class="helptext" translate="yes">For your main domain name select "quick cron example" and then your authentication token is the random string on the last line between the ? and = characters.</p>
+
+    <p class="helptext" translate="yes">Your current IP address is shown at the top of the Dynamic DNS screen of the Freedombone user interface. You can use the "Mass Mod" feature at the top of the "Subdomains" part of the FreeDNS site to set all of your subdomains to that IP address.</p>
+
+    <p class="helptext" translate="yes">Select the MX entry for your main domain and change the destination to 10:mydomainname rather than 10:mail.mydomainname.</p>
+
+    <p class="helptext" translate="yes">Enter your FreeDNS login details and the authentication token on the Dynamic DNS screen of the Freedombone user interface.</p>
+
+  </body>
+</html>
diff --git a/webadmin/dynamicdns.php b/webadmin/dynamicdns.php
index 1ccb7b8c2..4e2061c22 100755
--- a/webadmin/dynamicdns.php
+++ b/webadmin/dynamicdns.php
@@ -4,6 +4,10 @@
 
 $output_filename = "settings.html";
 
+if (isset($_POST['submitddnshelp'])) {
+    $output_filename = "help_dynamicdns.html";
+}
+
 if (isset($_POST['submitddns'])) {
     $ddns = htmlspecialchars($_POST['dynamicdns']);
     $ddns_username = htmlspecialchars($_POST['ddns_username']);
-- 
GitLab