This repository has been archived by the owner on Aug 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
106 lines (93 loc) · 6.14 KB
/
index.html
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.9.1/font/bootstrap-icons.css">
<script defer src="./js/models/imovel.js"></script>
<script src="./js/models/listImoveis.js"></script>
<script defer src="./js/models/manager.js"></script>
<script defer src="./js/main.js"></script>
<title>Sistema de cadastro de Imóveis</title>
</head>
<body class="bg-first_yellow_color flex flex-col items-center justify-end">
<section class="w-full h-30rem"></section>
<section class="absolute top-24 bg-second_yellow_color w-35rem p-10 rounded-lg shadow-lg font-sans flex flex-col gap-5">
<h1 class="text-center font-bold text-4xl uppercase">Corretora</h1>
<form class="flex flex-col gap-4">
<div class="flex flex-col">
<label for="clienteName" class="text-lg font-thin p-1">Nome do Cliente:</label>
<input type="text" name="clienteName" id="clienteName" placeholder="José Almarindo..." class="p-2 pl-4 rounded-lg bg-first_yellow_color shadow-lg outline-none border-none">
</div>
<div class="flex flex-col">
<h2 for="clienteName" class="text-lg font-thin p-1">Informe qual é o tipo:</h2>
<div class="flex flex-row gap-2">
<div>
<input type="radio" name="radio" id="Apartamento" value="Apartamento" class="typeImovel p-2 rounded-lg bg-first_yellow_color shadow-lg outline-none border-none" checked>
<label for="Apartamento" class="text-lg font-thin p-1">Apartamento</label>
</div>
<div>
<input type="radio" name="radio" id="Casa" value="Casa" class="typeImovel p-2 rounded-lg bg-first_yellow_color shadow-lg outline-none border-none">
<label for="Casa" class="text-lg font-thin p-1">Casa</label>
</div>
</div>
</div>
<div class="flex flex-col">
<label for="areaHouse" class="text-lg font-thin p-1">Área da Casa (m²):</label>
<input type="text" name="areaHouse" id="areaHouse" placeholder="24..." class="p-2 pl-4 rounded-lg bg-first_yellow_color shadow-lg outline-none border-none">
</div>
<div class="flex flex-col">
<h2 for="clienteName" class="text-lg font-thin p-1">Informe se ainda está a venda:</h2>
<div class="flex flex-row gap-2">
<div>
<input type="radio" name="radio2" id="notok" value="Alugado" class="p-2 rounded-lg bg-first_yellow_color shadow-lg outline-none border-none" checked>
<label for="notok" class="text-lg font-thin p-1">Alugado</label>
</div>
<div>
<input type="radio" name="radio2" id="ok" value="Disponível" class="p-2 rounded-lg bg-first_yellow_color shadow-lg outline-none border-none">
<label for="ok" class="text-lg font-thin p-1">Disponível</label>
</div>
</div>
</div>
<div class="flex flex-col">
<input type="button" name="btnAdd" value="Cadastrar" class="p-2 pl-4 rounded-lg bg-first_yellow_color shadow-lg outline-none border-none cursor-pointer hover:bg-thirty_yellow_color hover:text-first_yellow_color">
</div>
</form>
</section>
<section class="listImoveis w-full bg-second_yellow_color flex p-20 flex-col gap-10 items-center pt-60"></section>
<div class="btn_remove fixed right-5 bottom-5 rounded-xl px-4 py-3 cursor-pointer bg-black shadow-shadow_default shadow-yellow-600 hover:bg-red-700 hover:text-white">
<i class="bi bi-trash3-fill text-white text-4xl"></i>
</div>
<section class="remove_modal fixed bg-first_black_color backdrop-blur-sm inset-0 justify-center items-center hidden flex-col">
<div class="flex w-70rem justify-center mb-2">
<div class="w-50% flex flex-row gap-4 justify-center items-center">
<p class="text-white text-xl"><i class="bi bi-filter-circle-fill"></i> Filtre por:</p>
<ul class="flex flex-row gap-5">
<li class="filter_icon text-thirty_yellow_color text-2xl cursor-pointer border-b-2 border-first_yellow_color"><i class="bi bi-shuffle"></i></li>
<li class="filter_icon text-thirty_yellow_color text-2xl cursor-pointer"><i class="bi-house-door-fill"></i></li>
<li class="filter_icon text-thirty_yellow_color text-2xl cursor-pointer"><i class="bi bi-building"></i></li>
</ul>
</div>
<div class="w-50% text-center">
<i class="bi bi-x-lg btn_close_remove text-white text-4xl cursor-pointer hover:text-red-600 ml-48"></i>
</div>
</div>
<section class=" bg-second_yellow_color h-35rem w-55rem p-10 rounded-lg shadow-lg font-sans flex flex-col gap-2">
<h1 class="text-center font-bold text-4xl uppercase">Lista de clientes</h1>
<ul class="w-full p-2 flex flex-row mt-4 justify-end">
<div class="flex flex-row justify-between w-2/3 mr-14">
<li class="font-bold text-lg">Cliente</li>
<li class="font-bold text-lg">Área da Casa</li>
<li class="font-bold text-lg">Tipo</li>
</div>
</ul>
<ul class="list_to_remove h-25rem w-full flex flex-col gap-8 border border-thirty_yellow_color p-6 overflow-y-auto overflow-x-hidden select-none"></ul>
<div class="flex">
<input type="button" name="deleteBtn" value="Deletar" class="p-2 pl-4 w-full rounded-lg bg-first_yellow_color shadow-lg outline-none border-none font-bold cursor-pointer hover:bg-second_red_color hover:text-white">
</div>
</section>
</section>
</body>
</html>