-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.html
More file actions
61 lines (50 loc) · 1.83 KB
/
header.html
File metadata and controls
61 lines (50 loc) · 1.83 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<html>
<body>
<script src="stylesheets/js/jquery.js"></script>
<script src="stylesheets/js/bootstrap-collapse.js"></script>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<!-- .btn-navbar is used as the toggle for collapsed navbar content -->
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<!-- Be sure to leave the brand out there if you want it shown -->
<a class="brand" href="/">BeneTag</a>
<!-- Everything you want hidden at 940px or less, place within here -->
<div class="nav-collapse">
<!-- .nav, .navbar-search, .navbar-form, etc -->
{% if notsignedin %}
<ul class="nav">
<li> <a href='/signup?producer=True'>Producer sign-in</a></li>
<li> <a href='/signup?consumer=True'>Consumer sign-in</a></li>
</ul>
{% endif %}
{% if signedinconsumer %}
<ul class="nav">
<li><a href="/myprofile">My profile</a></li>
<li><a href="/mycloset">Closet</a></li>
<li class="divider-vertical"></li>
<li><a href="/logout">Logout</a></li>
</ul>
{% endif %}
{% if signedinproducer %}
<ul class="nav">
<li><a href="/myprofile">My profile</a></li>
<li><a href="/myworkers">Workers</a></li>
<li><a href="/myfactories">Factories</a></li>
<li><a href="/myproducts">Products</a></li>
<li class="divider-vertical"></li>
<li><a href="/logout">Logout</a></li>
</ul>
{% endif %}
</div>
</div>
</div>
</div>
<p id = "logo"> <a href="./">BeneTag</a></p>
<hr id="top-line" class="spaced">
</body>
</html>