From de218833e2a0deebdc92c7e4485fa22eb2fa0812 Mon Sep 17 00:00:00 2001
From: Bob Mottram <bob@freedombone.net>
Date: Wed, 5 Sep 2018 14:32:06 +0100
Subject: [PATCH] help for akaunting

---
 webadmin/EN/help_akaunting.html | 145 ++++++++++++++++++++++++++++++++
 1 file changed, 145 insertions(+)
 create mode 100644 webadmin/EN/help_akaunting.html

diff --git a/webadmin/EN/help_akaunting.html b/webadmin/EN/help_akaunting.html
new file mode 100644
index 000000000..56c5a5adb
--- /dev/null
+++ b/webadmin/EN/help_akaunting.html
@@ -0,0 +1,145 @@
+<!DOCTYPE html>
+<html>
+  <style>
+    * {
+        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;
+    }
+
+    body {
+        margin: 0;
+        font-family: Arial;
+    }
+
+    .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="app_akaunting.html"><img id="headerpic" class="img-responsive" src="images/logo.png"></a>
+    </div>
+
+    <p class="headertext">Akaunting</p>
+
+    <p class="helptext">The Freedombone system isn't primarily aimed at companies or institutions, but if you're a one person company or freelancer then having the ability to run your own accounting system and keep the data private and also backed up is useful. Akaunting provides a nice web based system for small business accounts, and is also quite usable within a mobile web browser.</p>
+
+    <p class="subheaderports">Ports</p>
+
+    <p class="portstext">Forward port 80 and 443 from your internet router</p>
+
+    <p class="subheadertext">Installation</p>
+
+    <p class="helptext">You will need to enter some details for the database.</p>
+
+    <p class="codetext">
+      Hostname: localhost
+      Username: root
+      Password: [the password you set up the system with]
+      Database: akaunting
+    </p>
+
+    <p class="helptext">After that you'll need to enter a company name and an email address. You can make the administrator password anything you prefer.</p>
+
+    <p class="helptext">Accounts software can often be quite complex, and so you'll probably want to refer to the <a href="https://akaunting.com/docs">official documentation</a> for details.</p>
+
+  </body>
+</html>
-- 
GitLab