ocr_gpt4o / templates /index.html
Tony363
get templates and css
17d24fc
raw
history blame contribute delete
658 Bytes
<!DOCTYPE html>
<html>
<head>
<title>OpenAI Quickstart</title>
<link
rel="shortcut icon"
href="{{ url_for('static', path='/dog.png') }}"
/>
<link rel="stylesheet" href="{{ url_for('static', path='/main.css') }}" />
</head>
<body>
<img src="{{ url_for('static', path='/dog.png') }}" class="icon" />
<h3>Name my pet</h3>
<form action="/" method="post">
<input type="text" name="animal" placeholder="Enter an animal" autocomplete="off" required />
<input type="submit" value="Generate names" />
</form>
{% if result %}
<div class="result">{{ result }}</div>
{% endif %}
</body>
</html>