forked from alyab0uzaid/eHacks2024
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (31 loc) · 954 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Centered iPhone Image</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="content-container">
<!-- Plus Button -->
<button id="createModeBtn">+</button>
<!-- Mode Creation Modal -->
<div id="modeModal" class="modal">
<div class="modal-content">
<span class="close">×</span>
<form id="modeForm">
<input type="text" id="modeName" name="modeName" placeholder="Mode Name" required>
<select id="playlistSelect">
<!-- Options will be added here dynamically -->
</select>
<button type="submit">Save Mode</button>
</form>
</div>
</div>
</div>
<div class="iphone-container">
<img src="iphone.png" alt="iPhone Image" />
</div>
</body>
</html>