--- a +++ b/templates/base.html @@ -0,0 +1,62 @@ +<html lang="en"> + +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <meta http-equiv="X-UA-Compatible" content="ie=edge"> + <title>AI Demo</title> + <link href="https://cdn.bootcss.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet"> + <script src="https://cdn.bootcss.com/popper.js/1.12.9/umd/popper.min.js"></script> + <script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script> + <script src="https://cdn.bootcss.com/bootstrap/4.0.0/js/bootstrap.min.js"></script> + <link href="{{ url_for('static', filename='css/main.css') }}" rel="stylesheet"> + <link rel="stylesheet" href="C:\Users\junnajamshed\Desktop\projectCopy\static\css\navstyle.css"> + <style> + body{ + width: 100%; + height: 100vh; + display: flex; + background-size: 300% 300%; + background-image: linear-gradient( + -45deg, + rgba(59,173,227,1) 0%, + rgba(87,111,230,1) 25%, + rgba(152,68,183,1) 51%, + rgba(255,53,127,1) 100% + ); + animation: AnimateBG 20s ease infinite; + } + + @keyframes AnimateBG { + 0%{background-position:0% 50%} + 50%{background-position:100% 50%} + 100%{background-position:0% 50%} + } + </style> +</head> + +<body> + <nav> + <input type="checkbox" id="check"> + <label for="check" class="checkbtn"> + <i class="fas fa-bars"></i> + </label> + <label class="logo">Leukemia Cancer Detection</label> + <ul> + <li><a class="active" href="#">Home</a></li> + <li><a href="index.html">Detection</a></li> + <li><a href="about.html">About us</a></li> + <li><a href="#">Contact</a></li> + </ul> + </nav> + + <div class="container"> + <div id="content" style="margin-top:10em">{% block content %}{% endblock %}</div> + </div> +</body> + +<footer> + <script src="{{ url_for('static', filename='js/main.js') }}" type="text/javascript"></script> +</footer> + +</html> \ No newline at end of file