| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Website to APK Converter</title> | |
| </head> | |
| <body> | |
| <h1>Convert Your Website to an Android App</h1> | |
| {% with messages = get_flashed_messages() %} | |
| {% if messages %} | |
| <ul> | |
| {% for message in messages %} | |
| <li>{{ message }}</li> | |
| {% endfor %} | |
| </ul> | |
| {% endif %} | |
| {% endwith %} | |
| <form action="/build" method="post"> | |
| <label for="url">Enter Website URL:</label> | |
| <input type="url" id="url" name="url" required> | |
| <button type="submit">Convert to APK</button> | |
| </form> | |
| </body> | |
| </html> |