Skip to content

Instantly share code, notes, and snippets.

@arslnb
Created June 19, 2018 05:27
Show Gist options
  • Save arslnb/3044c42fd52ac665131a636db128c756 to your computer and use it in GitHub Desktop.
Save arslnb/3044c42fd52ac665131a636db128c756 to your computer and use it in GitHub Desktop.
<div class="ui secondary menu purple-menu">
<div class="ui container">
<a class="fitted item">
Scoot
</a>
<div class="right menu">
<a class="item" href="/discover">
Discover
</a>
<a class="item" href="/host">
Become a host
</a>
{% if not current_user.is_authenticated %}
<a class="">
<div class="ui purple button show-login">
Get Started
</div>
</a>
{% else %}
{% if user['is_authorized'] %}
<a class="item">
Inbox
</a>
<a class="item">
Bookings
</a>
{% endif %}
<a class="">
<span><div class="ui inline pointing top right dropdown">
<a class="item">
<img class="ui avatar image" src="{{user['photoURL']}}">
{{user['displayName']}}
<i class="dropdown icon"></i>
</a>
<div class="menu">
<a class="item" href="/profile">
View Profile
</a>
<a class="item" href="/unstranger">
Unstranger a friend
</a>
<a class="item" href="/settings">
Account settings
</a>
<a class="item" href="/feedback">
Feedback
</a>
<a class="item" href="/help">
Help
</a>
<a class="item" href="/logout">
Log Out
</a>
</div>
</div></span>
</a>
{% endif %}
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment