File size: 711 Bytes
a5aa8a4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<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>