-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (34 loc) · 1.22 KB
/
index.html
File metadata and controls
38 lines (34 loc) · 1.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Corps Search — Demon Slayer</title>
<link href="style.css" rel="stylesheet">
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<div class="wrapper">
<input id="SearchInput" class=" inp px-5 py-5 rounded outline-none bg-[#111] text-[#888] "type='text' placeholder="search profiles ....">
<div id="profile-container" class="flex flex-row gap-1 items-center"></div>
</div>
</div>
<!-- Add Character Modal -->
<div id="add-modal" style="display:none;">
<div id="modal-box">
<h3>Add a Character</h3>
<input type="text" id="new-name" placeholder="Character name">
<textarea id="new-bio" placeholder="One line bio"></textarea>
<!-- Option 1: Upload local image -->
<input type="file" id="img-upload" accept="image/*">
<!-- Option 2: Paste image URL -->
<input type="text" id="img-url" placeholder="Or paste image URL">
<button id="submit-character">Add to Corps</button>
<button id="close-modal">Cancel</button>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>