-
Notifications
You must be signed in to change notification settings - Fork 2
/
header_2.html
28 lines (23 loc) · 1.1 KB
/
header_2.html
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
<div id="sidebar">
<div id="login" class="username d-flex">
{% if basket.username %}
<div class="skin">
<img src="https://mc-heads.net/body/{{basket.ign}}" alt="" class="drop-shadow">
</div>
<div class="username d-flex flex-column align-items-start justify-content-center">
<h1>Welcome, {{basket.ign}}</h1>
<a class="btn box-shadow dh-bg-red" href="/checkout/logout"><i class="bi bi-box-arrow-left"></i> Logout</a>
</div>
{% else %}
<div class="skin">
<img src="https://mc-heads.net/body/MHF_Steve" alt="" class="drop-shadow">
</div>
<div class="username d-flex flex-column align-items-start justify-content-center">
<h1>Welcome, Guest</h1>
<a class="btn box-shadow dh-bg-green" href="/login"><i class="bi bi-box-arrow-in-right"></i> Login</a>
</div>
{% endif %}
</div>
{% include "header_3.html" %}
{{ modules|raw }}
</div>