conference-archive/templates/navbar.html

15 lines
404 B
HTML
Raw Normal View History

2023-09-21 04:57:52 +01:00
<p>
2023-09-22 21:00:56 +01:00
<form action="{{ url_for("search_people") }}">
2023-09-24 09:21:16 +01:00
<a href="{{ url_for("index") }}">conferences</a>
{#
2023-09-21 04:57:52 +01:00
| <a href="{{ url_for("events_page") }}">events</a>
2023-09-24 09:21:16 +01:00
#}
2023-09-21 04:57:52 +01:00
| <a href="{{ url_for("top_speakers_page") }}">speakers</a>
2023-09-22 21:00:56 +01:00
<input type="text" class="form-control" placeholder="speaker name" name="q" id="q">
<button type="submit" class="btn btn-primary">search</button>
</form>
2023-09-21 04:57:52 +01:00
</p>