123456789101112131415161718192021 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- </head>
- <link rel="stylesheet" href="{{ url_for('static',filename='css/ul.css') }}">
- <body>
- <form action="{{ url_for('check') }}" method="POST">
- <select name="Test">
- <tr>
- {% for i1 in labels %}
- <option>{{i1}}</option>
- {% endfor %}
- </tr>
- </select>
- <button type='submit'>Submit</button>
- </form>
- </body>
- </html>
|