Netacea Verify

The following document outlines how to create a custom page for use with Netacea’s solution.

Prerequisites

circle-exclamation

Provided that the above prerequisites have been completed, a custom page can be created by doing the following:

HTML Page

To create an HTML page that will be used for serving Verify, it may be beneficial to start with the Netacea Template HTML before adding the custom HTML code. The templated page can be seen at the bottom of this document. Your custom HTML page can be designed per your specific requirements and/or company branding, however, the page must include the following code.

circle-exclamation

Page Template

This is our base version of the Verify page:

<!doctype html>
<html lang="en">
  <head runat="server">
    <meta charset="UTF-8" />
    <meta
      name="viewport"
      content="initial-scale=1,width=device-width,maximum-scale=1"
    />
    <meta
      http-equiv="Cache-Control"
      content="no-cache, no-store, must-revalidate"
    />
    <meta http-equiv="Pragma" content="no-cache" />
    <meta http-equiv="Expires" content="0" />
    <title>Verifying Device</title>
    <link rel="stylesheet" href="https://p.toadmash.net/toadmash-1.0.11.css" />
  </head>
  <body>
    <div class="text">Verifying your device, please wait</div>
    <div id="verification-error">Verification failed. Please try again.</div>
    <button id="verification-retry">Try Again</button>
    <form class="monocle-enriched"></form>
    <input
      type="hidden"
      name="IDs"
      value="{{tScriptIdValue}},{{tScriptNValue}},{{randomisationIdValue}},{{hitidValue}},{{encodeKeyValue}},{{sampleMode}}"
    />
    <div class="wrapper-values" style="display: none"></div>
    <noscript
      ><div id="no-js-msg">
        Verification failed. Please try again.
      </div></noscript
    >
    <script src="https://p.toadmash.net/{{timestamp}}/{{randomisationIdValue}}.js"></script>
  </body>
</html>

Important things to remember

circle-exclamation

If you have any issues with the creation of this page, please get in touch with the Netacea team.

Last updated