By default signing requests are displayed on Taktikal's domain. Example: https://app.taktikal.com/s/spa96741c3b1e34b8ebfb83f0653d7079c/si57c0f31c893048b7881b0421c4498f6b
Taktikal offers the option to use a custom domain when sending signing requests. Example: https://signature.mycompany.com?s=spa96741c3b1e34b8ebfb83f0653d7079c/si57c0f31c893048b7881b0421c4498f6b
This feature is only available to customers with a business plan.
How?
To use this feature, you need to set up a custom HTML snippet on a subdomain you control. This snippet will iframe Taktikal's signature page in full-page view.
After setting up the HTML code on a subdomain, contact support (help@taktikal.com) to update the signature URL from Taktikal to your domain.
HTML code
<!doctype html>
<html lang="En">
<head>
<title>Signature</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link rel="shortcut icon" type="image/png" href="images\favicon.png" />
<style>
body {
overflow: hidden;
padding: 0;
margin: 0;
}
iframe {
width: 100vw;
height: 100vh;
}
</style>
</head>
<body>
<script>
(function () {
var query = window.location.search
.substr(1)
.split("&")
.reduce(function (obj, str) {
var parts = str.split("=").map(function (str) {
return str.trim();
});
obj[parts[0]] = parts[1];
return obj;
}, {});
var container = document.body;
var iframe = document.createElement("iframe");
iframe.setAttribute("title", "Undirritunarsíða");
iframe.setAttribute(
"src",
"https://app.taktikal.is/s/" + query.s,
);
iframe.setAttribute("frameBorder", "0");
container.appendChild(iframe);
})();
</script>
</body>
</html>
Example URL
The default signature URL is: https://app.taktikal.com/s/spa96741c3b1e34b8ebfb83f0653d7079c/si57c0f31c893048b7881b0421c4498f6b
but it can be changed to
https://signature.mycompany.com?s=spa96741c3b1e34b8ebfb83f0653d7079c/si57c0f31c893048b7881b0421c4498f6b