navbar.html 864 Bytes
Newer Older
Geovanny's avatar
Geovanny committed
1 2 3 4 5
<nav-bar>
    <bar-title>
        <a href="/">Conquy Blade</a>
    </bar-title>
    <bar-options>
6
        <div class="dropdown bar-element">
Geovanny's avatar
Geovanny committed
7 8
            <p>Unit</p>
            <div class="dropdown-content">
9
                <a href="/units">All Units</a>
Geovanny's avatar
Geovanny committed
10
                <a href="/myunits">My Units</a>
Geovanny's avatar
Geovanny committed
11 12
            </div>
        </div>
13 14
        <div class="bar-element">
            <a onclick="alert('Not implemented yet')">House</a>
Geovanny's avatar
Geovanny committed
15 16 17 18
        </div>
    </bar-options>
    <bar-user>
        <a href="/login">Login/Register</a>
Geovanny's avatar
Geovanny committed
19 20 21
        <div class="dropdown" style="display: none;">
            <p>House</p>
            <div class="dropdown-content">
22
                <a onclick="alert('Not implemented yet')">Profile</a>
Geovanny's avatar
Geovanny committed
23 24 25
                <a onclick="logOut()">Log Out</a>
            </div>
        </div>
Geovanny's avatar
Geovanny committed
26 27 28
    </bar-user>
</nav-bar>
<script src="navbar.js"></script>