ABV / templates /index.html
rkihacker's picture
Create templates/index.html
a5aa8a4 verified
raw
history blame contribute delete
711 Bytes
<!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>