Advertisement
Guest User

Untitled

a guest
Mar 29th, 2020
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 5.17 KB | None | 0 0
  1.   <!-- Topbar Navbar -->
  2.           <ul class="navbar-nav ml-auto">
  3.  
  4.             <!-- Nav Item - Search Dropdown (Visible Only XS) -->
  5.             <li class="nav-item dropdown no-arrow d-sm-none">
  6.               <a class="nav-link dropdown-toggle" href="#" id="searchDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
  7.                 <i class="fas fa-search fa-fw"></i>
  8.               </a>
  9.               <!-- Dropdown - Messages -->
  10.               <div class="dropdown-menu dropdown-menu-right p-3 shadow animated--grow-in" aria-labelledby="searchDropdown">
  11.                 <form class="form-inline mr-auto w-100 navbar-search">
  12.                   <div class="input-group">
  13.                     <input type="text" class="form-control bg-light border-0 small" placeholder="Search for..." aria-label="Search" aria-describedby="basic-addon2">
  14.                     <div class="input-group-append">
  15.                       <button class="btn btn-primary" type="button">
  16.                         <i class="fas fa-search fa-sm"></i>
  17.                       </button>
  18.                     </div>
  19.                   </div>
  20.                 </form>
  21.               </div>
  22.             </li>
  23.  
  24.             <!-- Nav Item - Alerts -->
  25.             <li class="nav-item dropdown no-arrow mx-1">
  26.               <a class="nav-link dropdown-toggle" href="#" id="alertsDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
  27.                 <i class="fas fa-bell fa-fw"></i>
  28.                 <!-- Counter - Alerts -->
  29.                 <span class="badge badge-danger badge-counter">3+</span>
  30.               </a>
  31.               <!-- Dropdown - Alerts -->
  32.               <div class="dropdown-list dropdown-menu dropdown-menu-right shadow animated--grow-in" aria-labelledby="alertsDropdown">
  33.                 <h6 class="dropdown-header">
  34.                   Alerts Center
  35.                 </h6>
  36.                 <a class="dropdown-item d-flex align-items-center" href="#">
  37.                   <div class="mr-3">
  38.                     <div class="icon-circle bg-primary">
  39.                       <i class="fas fa-file-alt text-white"></i>
  40.                     </div>
  41.                   </div>
  42.                   <div>
  43.                     <div class="small text-gray-500">December 12, 2019</div>
  44.                     <span class="font-weight-bold">A new monthly report is ready to download!</span>
  45.                   </div>
  46.                 </a>
  47.                 <a class="dropdown-item d-flex align-items-center" href="#">
  48.                   <div class="mr-3">
  49.                     <div class="icon-circle bg-success">
  50.                       <i class="fas fa-donate text-white"></i>
  51.                     </div>
  52.                   </div>
  53.                   <div>
  54.                     <div class="small text-gray-500">December 7, 2019</div>
  55.                     $290.29 has been deposited into your account!
  56.                   </div>
  57.                 </a>
  58.                 <a class="dropdown-item d-flex align-items-center" href="#">
  59.                   <div class="mr-3">
  60.                     <div class="icon-circle bg-warning">
  61.                       <i class="fas fa-exclamation-triangle text-white"></i>
  62.                     </div>
  63.                   </div>
  64.                   <div>
  65.                     <div class="small text-gray-500">December 2, 2019</div>
  66.                     Spending Alert: We've noticed unusually high spending for your account.
  67.                  </div>
  68.                </a>
  69.                <a class="dropdown-item text-center small text-gray-500" href="#">Show All Alerts</a>
  70.              </div>
  71.            </li>
  72.            <!-- Nav Item - User Information -->
  73.            <li class="nav-item dropdown no-arrow">
  74.              <a class="nav-link dropdown-toggle" href="#" id="userDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
  75.                <span class="mr-2 d-none d-lg-inline text-gray-600 small">Adata</span>
  76.                <img class="img-profile rounded-circle" src="https://source.unsplash.com/QAB-WJcbgJk/60x60">
  77.              </a>
  78.              <!-- Dropdown - User Information -->
  79.              <div class="dropdown-menu dropdown-menu-right shadow animated--grow-in" aria-labelledby="userDropdown">
  80.                <a class="dropdown-item" href="#">
  81.                  <i class="fas fa-user fa-sm fa-fw mr-2 text-gray-400"></i>
  82.                  Profile
  83.                </a>
  84.                <a class="dropdown-item" href="#">
  85.                  <i class="fas fa-cogs fa-sm fa-fw mr-2 text-gray-400"></i>
  86.                  Settings
  87.                </a>
  88.                <a class="dropdown-item" href="#">
  89.                  <i class="fas fa-list fa-sm fa-fw mr-2 text-gray-400"></i>
  90.                  Activity Log
  91.                </a>
  92.                <div class="dropdown-divider"></div>
  93.                <a class="dropdown-item" href="#" data-toggle="modal" data-target="#logoutModal">
  94.                  <i class="fas fa-sign-out-alt fa-sm fa-fw mr-2 text-gray-400"></i>
  95.                  Logout
  96.                </a>
  97.              </div>
  98.            </li>
  99.  
  100.          </ul>
  101.  
  102.        </nav>
  103.        <!-- End of Topbar -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement