function invalidIA()

in webserver/article.php [206:233]


function invalidIA () {
  return <<<HTML
    <!doctype html>
    <html>
      <body>
        <p>
          Open an article, then connect the required fields in the <em>Article</em>
          element to see a preview.
        </p>
        <style>
          html { height: 100%; }
          body {
            display: flex;
            align-items: center;
            font-family: sans-serif;
            color: #ccc;
            height: 100%;
          }
          p {
            max-width: 300px;
            margin: auto;
            text-align: center;
          }
        </style>
      </body>
    </html>
  HTML;
}