21 lines
494 B
HTML
21 lines
494 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Title</title>
|
|
</head>
|
|
<body>
|
|
|
|
<br><br>
|
|
<form method="post" action = "{{ url_for('runReport') }}" >
|
|
<select name = 'SelectedClient'>
|
|
{% for x in ClientName %}
|
|
<option value = {{ ClientName[loop.index0] }} > {{ ClientName[loop.index0] }} </option>
|
|
{% endfor %}
|
|
</select>
|
|
<br>
|
|
<button type="submit">Submit</button>
|
|
</form>
|
|
|
|
</body>
|
|
</html> |