File size: 461 Bytes
6c54eb3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
    <title>Select Topics</title>
</head>
<body>
    <h1>Detected Topics</h1>
    <ul>
        {% for topic in auto_topics %}
        <li>{{ topic }}</li>
        {% endfor %}
    </ul>
    <form method="POST">
        <label>Add more topics (comma-separated, max 5):
            <input type="text" name="manual_topics">
        </label>
        <button type="submit">Continue</button>
    </form>
</body>
</html>