Ignore:
Timestamp:
02/05/23 19:55:10 (17 months ago)
Author:
Gjoko Kostadinov <gjoko.kostadinov@…>
Branches:
master
Children:
2b0a4db
Parents:
cc52b09
Message:

Adding customer registration

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main/resources/templates/homepage.html

    rcc52b09 ra436340  
    22<html>
    33<head>
    4     <title>FullCalendar by Creative Tim </title>
     4    <title>Schedlr</title>
    55
    66    <meta charset="utf-8"/>
     
    1616    <link href='css/fullcalendar.print.css' rel='stylesheet' media='print'/>
    1717    <link href="css/homepage.css" rel="stylesheet" />
     18    <link href="css/headers.css" rel="stylesheet">
    1819</head>
    1920<body>
     21
     22<!-- Navbar start -->
     23<header class="p-3 mb-3 border-bottom">
     24    <div class="container">
     25        <div class="d-flex flex-wrap align-items-center justify-content-center justify-content-lg-start">
     26            <a href="/" class="d-flex align-items-center mb-2 mb-lg-0 text-dark text-decoration-none">
     27                <svg class="bi me-2" width="40" height="32" role="img" aria-label="Bootstrap"><use xlink:href="#bootstrap"/></svg>
     28            </a>
     29
     30            <ul class="nav col-12 col-lg-auto me-lg-auto mb-2 justify-content-center mb-md-0">
     31                <li><a href="#" class="nav-link px-2 link-secondary">Overview</a></li>
     32                <li><a href="#" class="nav-link px-2 link-dark">Inventory</a></li>
     33                <li><a href="#" class="nav-link px-2 link-dark">Customers</a></li>
     34                <li><a href="#" class="nav-link px-2 link-dark">Products</a></li>
     35            </ul>
     36
     37            <form class="col-12 col-lg-auto mb-3 mb-lg-0 me-lg-3" role="search">
     38                <input type="search" class="form-control" placeholder="Search..." aria-label="Search">
     39            </form>
     40
     41            <div class="dropdown text-end">
     42                <a href="#" class="d-block link-dark text-decoration-none dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">
     43                    <img src="https://github.com/mdo.png" alt="mdo" width="32" height="32" class="rounded-circle">
     44                </a>
     45                <ul class="dropdown-menu text-small">
     46                    <li><a class="dropdown-item" href="#">New project...</a></li>
     47                    <li><a class="dropdown-item" href="#">Settings</a></li>
     48                    <li><a class="dropdown-item" href="#">Profile</a></li>
     49                    <li><hr class="dropdown-divider"></li>
     50                    <li><a class="dropdown-item" href="#">Sign out</a></li>
     51                </ul>
     52            </div>
     53        </div>
     54    </div>
     55</header>
     56<!-- Navbar end -->
     57
    2058<div id='wrap'>
    2159    <div id='calendar'></div>
     
    4078<script src='js/fullcalendar.js' type="text/javascript"></script>
    4179<script src="js/homepage.js" type="text/javascript"></script>
     80<script src="js/bootstrap.bundle.min.js"></script>
    4281</body>
    4382</html>
Note: See TracChangeset for help on using the changeset viewer.