22 lines
822 B
HTML
22 lines
822 B
HTML
<html>
|
|
<head>
|
|
<title>Test Tone3000 Select</title>
|
|
|
|
<script>
|
|
function onPageLoad() {
|
|
console.log("Test Tone3000 Select Page Loaded");
|
|
let iframe = document.getElementById("tone3000SelectIframe");
|
|
iframe.src = "https://www.tone3000.com/api/v1/select?app_id=pipedal_app&redirect_url=http://localhost:5173/public/handleTone3000download.html";
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="onPageLoad()">
|
|
<h1>Test Tone3000 Select Page</h1>
|
|
<p>This is a test page for Tone3000 select functionality.</p>
|
|
|
|
<iframe
|
|
style="width: 680px; height: 400px; border: 2px solid red;"
|
|
id="tone3000SelectIframe"
|
|
style="width:100%; height:600px; border:none;">
|
|
</body>
|
|
</html> |