public/layouts/dashboard/dashboard-user.html (35 lines of code) (raw):

<div class="dashboard-toolbar__dropdown dashboard-toolbar__dropdown--slim dashboard-toolbar__dropdown--user" ng-controller="wfDashboardCreateController" wf-dropdown-toggle> <button class="dashboard-toolbar__dropdown-dropdown-button" ng-click="toggleDropdown()"> <div class="dashboard-toolbar__dropdown-label"> <div class="dashboard-toolbar__dropdown-select"> <span class="dashboard-toolbar__dropdown-select-text">{{displayName}}</span> </div> <i class="dropdown-toolbar__dropdown-select-icon" wf-icon="arrow-down"></i> </div> </button> <div ng-if="showFeatureSwitches"> <wf-feature-switches></wf-feature-switches> </div> <ul class="dashboard-toolbar__dropdown dropdown-toolbar__list list-unstyled content-type-list--hidden" ng-class="{'content-type-list--hidden' : !showDropdown }"> <li class="dropdown-toolbar__item" ng-click="resetFilters()"> <label class="dropdown-toolbar__item-label"> <span class="dropdown-toolbar__item-title" title="Reset all filters">Reset filters</span> </label> </li> <li class="dropdown-toolbar__item"> <a class="dropdown-toolbar__item-label" href="https://docs.google.com/forms/d/e/1FAIpQLSeZje55T3OnErlTI_8iGuyZERjDy2Pybh8fdPmbnjy1PNFDAw/viewform" target="_blank"> <span class="dropdown-toolbar__item-title" title="Send Feedback">Send Feedback</span> </a> </li> <li class="dropdown-toolbar__item"> <a class="dropdown-toolbar__item-label" href="/training" target="_blank"> <span class="dropdown-toolbar__item-title" title="">Training</span> </a> </li> <li class="dropdown-toolbar__item" ng-click="logout('Would you like to logout?')"> <label class="dropdown-toolbar__item-label"> <span class="dropdown-toolbar__item-title" title="Logout">Sign out</span> </label> </li> </ul> </div>