-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (78 loc) · 3.45 KB
/
Copy pathindex.html
File metadata and controls
86 lines (78 loc) · 3.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<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">
<link rel="icon" href="https://bcw.blob.core.windows.net/public/img/9977764104160066">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-KyZXEAg3QhqLMpG8r+8fhAXLRk2vvoC2f3B09zVXn8CA5QIVfZOJ3BCsw2P0p/We" crossorigin="anonymous">
<link rel="stylesheet" href="assets/style/main.css">
<link rel="stylesheet" href="assets/style/style.css">
<link rel="stylesheet" href="//cdn.materialdesignicons.com/5.4.55/css/materialdesignicons.min.css">
<title>gregslist</title>
</head>
<body>
<header>
<nav class="navbar navbar-dark navbar-expand bg-dark text-light no-select d-flex justify-content-between pe-5">
<a class="navbar-brand ms-3" href="#">
<img src="https://codeworks.blob.core.windows.net/public/assets/img/cw-mark.png" height="45" alt=""
loading="lazy">
<span class="ms-2">gregslist</span>
</a>
<b class="selectable p-3" onclick="app.carsController.viewCars()">Cars</b>
<b class="selectable p-3" onclick="app.housesController.viewHouses()">Houses</b>
<b class="selectable p-3">Jobs</b>
</nav>
</header>
<main>
<div class="container-fluid">
<div id="listings" class="row">
<!-- Car -->
<!-- <div class=" col-6 col-md-3 ">
<div class="bg-light rounded shadow p-2">
<img class="img-fluid" src="http://www.deansgarage.com/wp-content/uploads/GNpropsals.jpg" alt="">
<h5 class="text-center">make | model | year</h5>
<h4 class="text-center">$100</h4>
<p>description</p>
</div>
</div> -->
<!-- Car end -->
</div>
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary btn-lg" onclick="app.carsController.openCreateForm()">
Create
</button>
<!-- Modal -->
<div class="modal fade" id="form-modal" tabindex="-1" role="dialog" aria-labelledby="modelTitleId"
aria-hidden="true">
<div class="modal-dialog modal-xl" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body" id="form-body">
<!-- form part -->
<!-- NOTE car from moved to components get car from -->
<!-- form part -->
</div>
</div>
</div>
</div>
</div>
</main>
<footer class="bg-dark text-light">
<div class="text-center no-select">
<p><small>Made with 💖 by Codeworks</small></p>
</div>
</footer>
<!-- NOTE NEED THIS AXIOS LINE TO USE AXIOS IN THE SERVICE! -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.23.0/axios.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/js/bootstrap.bundle.min.js"
integrity="sha384-U1DAWAznBHeqEIlVSCgzq+c9gqGAJn5c/t99JyeKa9xxaYpSvHU5awsuZVVFIhvj"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11.3.10/dist/sweetalert2.all.min.js"
integrity="sha256-hw7v8jZF/rFEdx1ZHepT4D73AFTHLu/P9kEyrNesRyc=" crossorigin="anonymous"></script>
<script src="app/main.js" type="module"></script>
</body>
</html>