Create dashboard UI
This commit is contained in:
parent
117c43d52d
commit
95117fc09b
1 changed files with 43 additions and 0 deletions
43
front/static/dashboard.html
Normal file
43
front/static/dashboard.html
Normal file
|
@ -0,0 +1,43 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="initial-scale=1, width=device-width" />
|
||||
<link
|
||||
rel="stylesheet"
|
||||
href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css"
|
||||
integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS"
|
||||
crossorigin="anonymous"
|
||||
/>
|
||||
<script
|
||||
src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js"
|
||||
integrity="sha384-B0UglyR+jN6CkvvICOB2joaf5I4l3gm9GU6Hc1og6Ls7i6U/mkkaduKaBhlAXv9k"
|
||||
crossorigin="anonymous"
|
||||
></script>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
|
||||
<title>Reimbursinator</title>
|
||||
<link rel="shortcut icon" href="/favicon.ico" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="jumbotron"><h1>Reimbursinator Report</h1></div>
|
||||
<nav class="navbar">
|
||||
<ul class="nav nav-tabs mr-auto">
|
||||
<li class="nav-item"><a class="nav-link active" href="#">New</a></li>
|
||||
<li class="nav-item"><a class="nav-link" href="#">Unfinished</a></li>
|
||||
<li class="nav-item"><a class="nav-link" href="#">History</a></li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link disabled" href="#">Others</a>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="nav justify-content-end">
|
||||
<li>
|
||||
<a href="#"
|
||||
><span class="glyphicon glyphicon-log-out"></span>Logout</a
|
||||
>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in a new issue