-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (64 loc) · 2.3 KB
/
index.html
File metadata and controls
70 lines (64 loc) · 2.3 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<script defer src="script.js"></script>
<link rel="stylesheet" href="style.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Bloom</title>
<link rel = "icon" type = "image/png" href= "images/bloomblossom.png">
</head>
<body>
<div id="app">
<div id="sidebar">
<div class="sidebar-content">
<p class="sidebar-text">Select a Flower</p>
<div id="flower-list">
<!-- sidebar flower list here -->
</div>
</div>
</div>
<div id="main">
<div id="flower-main">
<!-- selected flower image here -->
</div>
<div id="visualizer">
<canvas height="500" width="500" id="vis"></canvas>
<!-- visualizer goes here -->
</div>
<div id="bottom-bar">
<div id="selected-flowers">
<!-- flowers chosen for bouquet here -->
</div>
</div>
<div id="bouquet-buttons-bar">
<div id="bouquet-buttons">
<button class="btn bottom-btn" id="create-bouquet">Save Bouquet</button>
<button class="btn bottom-btn" id="view-all-bouquets">View All Bouquets</button>
</div>
</div>
</div>
</div>
<div id="modal" style="display: none;" data-action="close">
<form id="save-bouquet-form">
<div id="form-content">
<h2 style="margin: 0px;">🌸 Save Bouquet 🌸</h2><br>
<label for="name">Name:</label>
<input type="text" name="name"><br><br>
<label for="description"> Description:</label>
<input type="text" name="description"><br><br>
<input type="submit" value="Create Bouquet">
</div>
<button class="btn" id="go-back">Go Back</button>
</form>
</div>
<!-- This modal will display the bouquets ~^~^~^ -->
<div id="bouquetModal" style="display: none;" data-action="close">
<ul id="bouquet-list"><h2>🌸 Saved Bouquets 🌸</h2>
<!-- bouquet list will appear here through modal -->
</ul>
</div>
<div id="audio-container"></div>
</body>
</html>