blob: 27143d4b99b046fa2baa56e6237c29cdb297bcce [file] [log] [blame]
<!DOCTYPE html>
<script>
fetch("clientId")
.then(function(response) {
return response.text();
})
.then(function(text) {
parent.postMessage({clientId: text}, "*");
});
</script>