conference-archive/templates/navbar.html

13 lines
387 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-21 04:57:52 +01:00
<a href="{{ url_for("index") }}">home</a>
| <a href="{{ url_for("events_page") }}">events</a>
| <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>