sd-webui-openpose-editor/templates/greetings.html

15 lines
322 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Greeting</title>
</head>
<body>
<h1>Welcome, {{ name }}!</h1>
</body>
<script>
window.parent.postMessage("Hello from the child iframe!", "*");
</script>
</html>