-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathiframe-host.html
More file actions
59 lines (58 loc) · 1.29 KB
/
iframe-host.html
File metadata and controls
59 lines (58 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pakt Auth Module Iframe Host</title>
<style>
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
background: #0b1224;
color: #e5e7eb;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
header {
padding: 12px 16px;
background: #111827;
border-bottom: 1px solid #1f2937;
display: flex;
align-items: center;
justify-content: space-between;
box-sizing: border-box;
}
main {
width: 100%;
height: calc(100% - 56px);
}
iframe {
width: 100%;
height: 100%;
border: 0;
background: #000;
}
code {
background: #1f2937;
padding: 2px 6px;
border-radius: 4px;
color: #f9fafb;
}
</style>
</head>
<body>
<header>
<div>Pakt Auth Module Iframe Host</div>
<div>Origin: <code>localhost</code></div>
</header>
<main>
<iframe
src="http://localhost:4234"
title="Pakt Auth Module App"
sandbox="allow-scripts allow-same-origin allow-forms allow-popups"
allow="clipboard-read; clipboard-write"
></iframe>
</main>
</body>
</html>