Spaces:
Sleeping
Sleeping
<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> |