0% found this document useful (0 votes)
57 views6 pages

End of Topbar

This document contains code for a dashboard page with sections for earnings over monthly and annual periods, tasks completion percentage, and pending requests. It includes elements like navigation bar, page content, footer, and scripts.

Uploaded by

jung dila
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
57 views6 pages

End of Topbar

This document contains code for a dashboard page with sections for earnings over monthly and annual periods, tasks completion percentage, and pending requests. It includes elements like navigation bar, page content, footer, and scripts.

Uploaded by

jung dila
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 6

<!

-- End of Topbar -->

<!-- Begin Page Content -->

<div class="container-fluid">

<!-- Page Heading -->

<div class="d-sm-flex align-items-center justify-content-between mb-4">

<h1 class="h3 mb-0 text-gray-800">Dashboard</h1>

<a href="#" class="d-none d-sm-inline-block btn btn-sm btn-primary shadow-sm"><i


class="fas fa-download fa-sm text-white-50"></i> Generate Report</a>

</div>

<!-- Content Row -->

<div class="row">

<!-- Earnings (Monthly) Card Example -->

<div class="col-xl-3 col-md-6 mb-4">

<div class="card border-left-primary shadow h-100 py-2">

<div class="card-body">

<div class="row no-gutters align-items-center">

<div class="col mr-2">

<div class="text-xs font-weight-bold text-primary text-uppercase mb-1">Earnings


(Monthly)</div>

<div class="h5 mb-0 font-weight-bold text-gray-800">$40,000</div>

</div>

<div class="col-auto">

<i class="fas fa-calendar fa-2x text-gray-300"></i>


</div>

</div>

</div>

</div>

</div>

<!-- Earnings (Monthly) Card Example -->

<div class="col-xl-3 col-md-6 mb-4">

<div class="card border-left-success shadow h-100 py-2">

<div class="card-body">

<div class="row no-gutters align-items-center">

<div class="col mr-2">

<div class="text-xs font-weight-bold text-success text-uppercase mb-1">Earnings


(Annual)</div>

<div class="h5 mb-0 font-weight-bold text-gray-800">$215,000</div>

</div>

<div class="col-auto">

<i class="fas fa-dollar-sign fa-2x text-gray-300"></i>

</div>

</div>

</div>

</div>

</div>

<!-- Earnings (Monthly) Card Example -->

<div class="col-xl-3 col-md-6 mb-4">

<div class="card border-left-info shadow h-100 py-2">

<div class="card-body">
<div class="row no-gutters align-items-center">

<div class="col mr-2">

<div class="text-xs font-weight-bold text-info text-uppercase mb-1">Tasks</div>

<div class="row no-gutters align-items-center">

<div class="col-auto">

<div class="h5 mb-0 mr-3 font-weight-bold text-gray-800">50%</div>

</div>

<div class="col">

<div class="progress progress-sm mr-2">

<div class="progress-bar bg-info" role="progressbar" style="width: 50%" aria-


valuenow="50" aria-valuemin="0" aria-valuemax="100"></div>

</div>

</div>

</div>

</div>

<div class="col-auto">

<i class="fas fa-clipboard-list fa-2x text-gray-300"></i>

</div>

</div>

</div>

</div>

</div>

<!-- Pending Requests Card Example -->

<div class="col-xl-3 col-md-6 mb-4">

<div class="card border-left-warning shadow h-100 py-2">

<div class="card-body">

<div class="row no-gutters align-items-center">


<div class="col mr-2">

<div class="text-xs font-weight-bold text-warning text-uppercase mb-1">Pending


Requests</div>

<div class="h5 mb-0 font-weight-bold text-gray-800">18</div>

</div>

<div class="col-auto">

<i class="fas fa-comments fa-2x text-gray-300"></i>

</div>

</div>

</div>

</div>

</div>

</div>

</div>

<!-- /.container-fluid -->

</div>

<!-- End of Main Content -->

<!-- Footer -->

<footer class="sticky-footer bg-white">

<div class="container my-auto">

<div class="copyright text-center my-auto">

<span>Copyright &copy; Your Website 2019</span>

</div>

</div>
</footer>

<!-- End of Footer -->

</div>

<!-- End of Content Wrapper -->

</div>

<!-- End of Page Wrapper -->

<!-- Scroll to Top Button-->

<a class="scroll-to-top rounded" href="#page-top">

<i class="fas fa-angle-up"></i>

</a>

<!-- Logout Modal-->

<div class="modal fade" id="logoutModal" tabindex="-1" role="dialog" aria-


labelledby="exampleModalLabel" aria-hidden="true">

<div class="modal-dialog" role="document">

<div class="modal-content">

<div class="modal-header">

<h5 class="modal-title" id="exampleModalLabel">Ready to Leave?</h5>

<button class="close" type="button" data-dismiss="modal" aria-label="Close">

<span aria-hidden="true">×</span>

</button>

</div>

<div class="modal-body">Select "Logout" below if you are ready to end your current
session.</div>

<div class="modal-footer">
<button class="btn btn-secondary" type="button" data-dismiss="modal">Cancel</button>

<a class="btn btn-primary" href="login.html">Logout</a>

</div>

</div>

</div>

</div>

<!-- Bootstrap core JavaScript-->

<script src="vendor/jquery/jquery.min.js"></script>

<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>

<!-- Core plugin JavaScript-->

<script src="vendor/jquery-easing/jquery.easing.min.js"></script>

<!-- Custom scripts for all pages-->

<script src="js/sb-admin-2.min.js"></script>

<!-- Page level plugins -->

<script src="vendor/chart.js/Chart.min.js"></script>

<!-- Page level custom scripts -->

<script src="js/demo/chart-area-demo.js"></script>

<script src="js/demo/chart-pie-demo.js"></script>

</body>

</html>

You might also like