-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 1.26 KB
/
index.html
File metadata and controls
25 lines (25 loc) · 1.26 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="shortcut icon" href="https://cavalier.hudsonrock.com/static/media/logo-1.967abb2c.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>cavalier preview api frontend</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="src/styles.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" />
</head>
<body class="bg-dark text-gray-300 p-8">
<div class="max-w-md mx-auto mb-8">
<input id="usernameInput" type="text" placeholder="Enter username or email" class="w-full p-2 bg-gray-700 rounded-md mb-2 text-white focus:ring focus:ring-gray-500" />
<div class="flex space-x-2">
<button id="searchButton" class="flex-1 bg-gray-600 hover:bg-gray-500 text-white font-bold py-2 px-4 rounded">Search</button>
</div>
</div>
<div id="loading" class="hidden flex justify-center items-center mb-8">
<div class="spinner"></div>
</div>
<div id="stealerResults"></div>
<script src="src/script.js"></script>
</body>
</html>