-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
47 lines (37 loc) · 2.27 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SherlockBase</title>
<meta name="author" content="AugustoCoder" />
<script src="https://cdn.tailwindcss.com?plugins=forms,typography,aspect-ratio,line-clamp"></script>
</head>
<body class="w-screen h-screen overflow-x-hidden flex flex-col gap-4 bg-gray-100">
<header class="w-full bg-indigo-700 text-white text-center sm:text-left text-4xl font-bold p-4">
<h1 class="truncate">SherlockBase</h1>
</header>
<main class="flex-1 flex flex-col items-center justify-center gap-8 px-4 py-8">
<div class="max-w-md w-full bg-white p-8 rounded-lg shadow-lg">
<h2 class="text-2xl text-gray-800 font-medium mb-4 text-center">Obtenha informações de maneira rápida e eficiente.</h2>
<div class="flex items-center mb-4">
<input type="text" id="cpf_cnpj" name="cpf_cnpj" placeholder="CPF/CNPJ" class="placeholder-gray-400 border border-gray-300 focus:border-indigo-600 rounded-l px-4 py-2 w-full" />
<button id="enviar" type="submit" class="bg-indigo-600 text-white px-6 py-2 rounded-r hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-indigo-600">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" class="w-6 h-6">
<path stroke-linecap="round" stroke-linejoin="round" d="M21 21l-5.197-5.197m0 0A7.5 7.5 0 105.196 5.196a7.5 7.5 0 0010.607 10.607z" />
</svg>
</button>
</div>
<div id="error" class="hidden mb-4 p-2 bg-red-100 border border-red-400 text-red-700 rounded"></div>
<div id="result" class="mt-8"></div>
</div>
</main>
<footer class="bg-indigo-700 text-white text-center py-4">
<p>
Desenvolvido por
<a href="https://github.com/AugustoCoder" target="_blank" class="hover:underline"> @AugustoCoder</a>
</p>
</footer>
<script src="./js/index.js"></script>
</body>
</html>