Spaces:
Runtime error
Runtime error
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>App Lookup</title> | |
| <link rel="stylesheet" href="/css/style.css" /> | |
| </head> | |
| <body> | |
| <div class="container"> | |
| <h1>App Lookup</h1> | |
| <p class="subtitle">Search apps on Google Play & Apple App Store</p> | |
| <form id="searchForm" class="search-box"> | |
| <div class="search-row"> | |
| <input | |
| type="text" | |
| id="query" | |
| placeholder="Search apps..." | |
| required | |
| /> | |
| <select id="store"> | |
| <option value="both">Both Stores</option> | |
| <option value="play">Google Play</option> | |
| <option value="ios">App Store</option> | |
| </select> | |
| <button type="submit">Search</button> | |
| </div> | |
| </form> | |
| <div id="results" class="results"></div> | |
| <div id="error" class="error"></div> | |
| </div> | |
| <script src="/js/app.js"></script> | |
| </body> | |
| </html> | |