This commit is contained in:
2026-09-02 02:37:30 +05:30
commit cb821faf54
7 changed files with 147 additions and 0 deletions
+46
View File
@@ -0,0 +1,46 @@
<!doctype html>
<html>
<head>
<title>
hello!
</title>
<style>
.grid {
display: grid;
width: 60%;
margin: auto;
grid-template-columns: 1fr 3fr;
grid-template-columns: 1fr 3fr;
grid-gap: 3em 1ex;
align-items: center;
}
.grid > header {
grid-column: 1 / span 2;
}
iframe {
height: 3em;
}
</style>
</head>
<body>
<section>
<header>
Here is the cookie flavour: <span id='target'>%COOKIE%</span>
</header>
</section>
<hr>
<section class="grid">
<header>the cookie when i request&hellip;</header>
<code>a.website.com</code>
<iframe src="https://a.website.com:8443/flavour"></iframe>
<code>b.website.com</code>
<iframe src="https://b.website.com:8443/flavour"></iframe>
<code>sub.a.website.com</code>
<iframe src="https://sub.a.website.com:8443/flavour"></iframe>
</section>
</body>
</html>