Is running cloud.squidex.io in an iframe something that is officially supported? I have a client that wants to use the cloud hosted version of Squidex, but wants a little more control over branding (custom domain landing page and a company logo above the iframe).
I did a proof of concept like this and everything seems to be working, and I don’t see any HTTP Response headers coming back that would forbid usage like this. Is this kind of usage something that we can count on for the foreseeable future?
<!DOCTYPE html>
<html>
<head>
<title>Squidex Wrapper Demo</title>
<meta charset="utf-8" />
<style>
body {
margin: 0;
display: flex;
flex-direction: column;
height: 100vh;
width: 100vw;
align-items: center;
}
img.logo {
margin: .5em;
height: 70px;
}
iframe {
display: block;
background: #000;
border: none;
overflow: hidden;
}
</style>
</head>
<body>
<h1>Demo: Squidex Admin in an iframe</h1>
<iframe title="Squidex Wrapper Demo" src="https://cloud.squidex.io/" frameborder="0" height="100%" width="100%"></iframe>
</body>
</html>