21 lines
415 B
HTML
21 lines
415 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>App and Integration</title>
|
|
<style>
|
|
iframe {
|
|
width: 50vh;
|
|
height: 100%;
|
|
border: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h2>App Page</h2>
|
|
<iframe src="http://localhost:8080"></iframe>
|
|
<h2>Wallet Page</h2>
|
|
<iframe src="http://localhost:8081"></iframe>
|
|
</body>
|
|
</html>
|