[3d7fc00] | 1 | <!DOCTYPE html>
|
---|
| 2 | <html lang="en">
|
---|
| 3 | <head>
|
---|
| 4 | {% load static %}
|
---|
| 5 | <meta charset="UTF-8">
|
---|
| 6 | <meta http-equiv="X-UA-Compatible" content="IE=edge">
|
---|
| 7 | <meta name="viewport" content="width=device-width, initial-scale=1.0">
|
---|
| 8 | <title>Finance Novel</title>
|
---|
| 9 | <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
---|
| 10 | <link href="https://code.jquery.com/ui/1.13.2/themes/base/jquery-ui.css" rel="stylesheet">
|
---|
| 11 | <style>
|
---|
| 12 | nav, .navbar-brand{
|
---|
| 13 | font-size: 1.5em;
|
---|
| 14 | }
|
---|
| 15 | .bg-secondary{
|
---|
| 16 | background-color: transparent !important;
|
---|
| 17 | }
|
---|
| 18 | body{
|
---|
| 19 | background: #e9e9e7;
|
---|
| 20 | }
|
---|
| 21 | .btn-primary{
|
---|
| 22 | background-color: white !important;
|
---|
| 23 | font-weight: bold !important;
|
---|
| 24 | border-color: black !important;
|
---|
| 25 | border-radius: 5px;
|
---|
| 26 | color: black;
|
---|
| 27 | --bs-btn-focus-shadow-rgb: 255, 215, 103;
|
---|
| 28 | }
|
---|
| 29 | .btn-primary:active{
|
---|
| 30 | background-color: rgba(218,255,230,1) !important;
|
---|
| 31 | color: black !important;
|
---|
| 32 | border-color: #ffd767 !important;
|
---|
| 33 | }
|
---|
| 34 | .btn-primary:hover{
|
---|
| 35 | background-color: #ffd767 !important;
|
---|
| 36 | color: white !important;
|
---|
| 37 | border-color: black !important;
|
---|
| 38 | }
|
---|
| 39 | .btn-primary:focus{
|
---|
| 40 | background-color: #ffd767 !important;
|
---|
| 41 | color: black !important;
|
---|
| 42 | border-color: #ffd767 !important;
|
---|
| 43 | }
|
---|
| 44 | .card{
|
---|
| 45 | background-color: white;
|
---|
| 46 | color: #5d5250;
|
---|
| 47 | }
|
---|
| 48 | .card:hover{
|
---|
| 49 | opacity: 0.9;
|
---|
| 50 | outline: 5px solid #ffd767;
|
---|
| 51 | }
|
---|
| 52 | .card-title{
|
---|
| 53 | margin: 0;
|
---|
| 54 | }
|
---|
| 55 | .form-floating>label{
|
---|
| 56 | left: auto !important;
|
---|
| 57 | }
|
---|
| 58 | .form-control:focus{
|
---|
| 59 | border-color: #ffd767 !important;
|
---|
| 60 | box-shadow: 0 0 0 0.25rem rgb(255 215 103 / 25%)
|
---|
| 61 | }
|
---|
| 62 | </style>
|
---|
| 63 | </head>
|
---|
| 64 | <body>
|
---|
| 65 | <nav class="navbar navbar-light navbar-expand-lg bg-secondary text-uppercase">
|
---|
| 66 | <div class="container">
|
---|
| 67 | <a class="navbar-brand" href="{% url 'home' %}"><img class="img-fluid" width="350px" src="{% static 'logo.png' %}"></a>
|
---|
| 68 | <button class="navbar-toggler text-uppercase font-weight-bold bg-secondary text-white rounded" type="button" data-bs-toggle="collapse" data-bs-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
|
---|
| 69 | Menu
|
---|
| 70 | <i class="fas fa-bars"></i>
|
---|
| 71 | </button>
|
---|
| 72 |
|
---|
| 73 | <div class="collapse navbar-collapse" id="navbarResponsive">
|
---|
| 74 | <ul class="navbar-nav ms-auto">
|
---|
| 75 | <li class="nav-item mx-0 mx-lg-1"><a class="nav-link py-3 px-0 px-lg-3 rounded">Admin Panel</a></li>
|
---|
| 76 | </ul>
|
---|
| 77 | </div>
|
---|
| 78 | </div>
|
---|
| 79 | </nav>
|
---|
| 80 |
|
---|
| 81 | <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/js/bootstrap.bundle.min.js"></script>
|
---|
| 82 | <script src="https://code.jquery.com/jquery-3.6.1.min.js"></script>
|
---|
| 83 | <script src="https://code.jquery.com/ui/1.13.2/jquery-ui.js"></script>
|
---|
| 84 |
|
---|
| 85 | {% block content %}
|
---|
| 86 | {% endblock %}
|
---|
| 87 |
|
---|
| 88 | </body>
|
---|
| 89 | </html> |
---|