Text_to_mage / app.html
grootroot's picture
Update app.html
b3116f1
raw
history blame contribute delete
485 Bytes
<!DOCTYPE html>
<html>
<head>
<title>Text to Image Generator</title>
</head>
<body>
<h1>Text to Image Generator</h1>
<form method="POST
<label for="text">Enter text:</label>
<br>
<textarea id="text" name="text" rows="5" cols="50"></textarea>
<br>
<input type="submit" value="Generate Image">
</form>
<br>
{% if image %}
<img src="{{ url_for('text_to_image') }}" alt="Generated Image">
{% endif %}
</body>
</html>