20 lines
671 B
HTML
20 lines
671 B
HTML
{% extends "layout.html" %}
|
|
|
|
{% block body %}
|
|
<h1>Search</h1>
|
|
<h2>Products</h2>
|
|
<form action="/products">
|
|
<input autocomplete="off" autofocus name="partnumber" placeholder="Partnumber" type="text" required>
|
|
<button type="submit">Search</button>
|
|
</form>
|
|
<h2>Accounts</h2>
|
|
<form action="/accounts">
|
|
<input autocomplete="off" autofocus name="accountname" placeholder="Accountname" type="text" required>
|
|
<button type="submit">Search</button>
|
|
</form>
|
|
<h2>Contacts</h2>
|
|
<form action="/contacts">
|
|
<input autocomplete="off" autofocus name="lastname" placeholder="Lastname" type="text" required>
|
|
<button type="submit">Search</button>
|
|
</form>
|
|
{% endblock %} |