File size: 658 Bytes
17d24fc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!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>