📁 Folder Navigator
Position:
Root
/
apphome
/
affiliates
Create
Folders
No folders here.
Files
📄 affiliates.xml
📄 index.php
📄 sidebyside.html
📝 File Editor
Editing:
sidebyside.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>REGISTER ADMIN AND USER</title> <style> /* Creates a flexible container filling the viewport */ .container { display: flex; width: 100vw; height: 650%; gap: 5px; /* Space between files */ box-sizing: border-box; padding: 05px; } /* Makes both file windows take equal horizontal space */ .file-window { flex: 1; width: 100%; height: 650px; border: 2px solid #ccc; } </style> </head> <body> <div class="container"> <!-- Replace src with your local paths or web URLs --> <iframe class="file-window" src="index.php"></iframe> <iframe class="file-window" src="../store/office1.php"></iframe> </div> </body> </html>
💾 Save Changes