903f730502
- further implementation of user login
77 lines
No EOL
2.2 KiB
HTML
Executable file
77 lines
No EOL
2.2 KiB
HTML
Executable file
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<!-- Required meta tags -->
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon">
|
|
<link rel="icon" href="img/favicon.ico" type="image/x-icon">
|
|
|
|
<!-- External styles -->
|
|
<link rel="stylesheet" href="css/bootstrap.min.css" crossorigin="anonymous">
|
|
|
|
<!-- gobal custom styles -->
|
|
<link href="css/blueweather.css" rel="stylesheet">
|
|
|
|
<!-- Custom styles for this site -->
|
|
<link href="css/index.css" rel="stylesheet">
|
|
|
|
<title>BlueWeather</title>
|
|
</head>
|
|
|
|
<body class="bg-ff" style="height: 100%;padding-top: 0;">
|
|
<nav class="navbar nav-pills navbar-expand-lg navbar-dark bg-dark shadow">
|
|
<a class="navbar-brand" href="#">BlueWeather</a>
|
|
|
|
<ul id="profileContainer" class="navbar-nav ml-auto">
|
|
</ul>
|
|
</nav>
|
|
|
|
<!-- Locations list -->
|
|
<main role="main" class="container" style="padding-top: 30px;">
|
|
|
|
<div class="d-flex align-items-center p-3 my-3 text-white-50 bg-blue rounded shadow-sm">
|
|
<img class="mr-3" src="img/icon.png" alt="" width="48" height="48">
|
|
<div class="lh-100">
|
|
<h6 class="mb-0 text-white lh-100">BlueWeather</h6>
|
|
<small>Since 2018</small>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="my-3 p-3 bg-white rounded shadow-sm">
|
|
<h6 class="border-bottom border-gray pb-2 mb-0">current places</h6>
|
|
<div id="locationsList">
|
|
<div class="media text-muted pt-3">
|
|
|
|
<div id="loader" class="opacity-animated" style="padding-left: 50%; padding-top:15px; opacity: 1;">
|
|
<div class="spinner-border" role="status">
|
|
<span class="sr-only">Loading...</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="locationsList" class="opacity-animated">
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</main>
|
|
<!-- js -->
|
|
<!-- External libs -->
|
|
<script src="js/jquery.min.js"></script>
|
|
<script src="js/popper.min.js"></script>
|
|
<script src="js/feather.js"></script>
|
|
<script src="js/bootstrap.min.js"></script>
|
|
|
|
<!-- Internal code -->
|
|
<script src="js/blueweather.js"></script>
|
|
<script src="js/index.js"></script>
|
|
</body>
|
|
|
|
|
|
</body>
|
|
|
|
|
|
</html> |