-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
25 lines (18 loc) · 767 Bytes
/
home.html
File metadata and controls
25 lines (18 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<html>
<head>
{% include "styles.html" %}
<title>BeneTag</title>
</head>
<body>
<div id="scrollable-panel">
{% include "navbar.html" %}
{% include "headerlogo.html" %}
<form action="/productsearchresult" method="post" align ="center">
<input type="search" placeholder="Search product by name"><br>
<button type="submit" class="btn"> Search </button>
</form>
<div class="column show-grid" id="buttons" align="center"><a class='btn large' width='100%' href='/signup?producer=True'>Log in as producer</a></div>
<div class="column show-grid" id="buttons" align="center"><a class='btn large' width='100%' href='/signup?consumer=True'>Log in as consumer</a></div>
{% include "footer.html" %}
</body>
</html>