-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (54 loc) · 1.88 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
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Happy Buddies</title>
<link rel="stylesheet" href="id.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="memberTable.css">
</head>
<body>
<div class="container">
<div class="form-and-table">
<div class="form-section">
<div class="title">
<h1>Happy Buddies</h1>
</div>
<!-- Your UI components go here -->
<div class="forms">
<input type="date" id="selectedDate" placeholder="Select Date">
</div>
<div class="input-with-button">
<div id="semesterButtons" class="semester-buttons"></div>
</div>
<div class="button-container">
<div class="done-reset-buttons">
<button id="doneBtn" onclick="done()">Done</button>
<button id="resetBtn" onclick="reset()">Reset</button>
</div>
</div>
</div>
</div>
<div class="results">
<div class="result-list">
<h2>Input</h2>
<ul id="inputList" class="input-list">
<!-- Placeholder for input list items -->
</ul>
<!-- Placeholder for result items -->
</div>
</div>
<div class="members-container">
<div class="members-table" id="membersTable">
<!-- Placeholder for members table content -->
</div>
</div>
<!-- Placeholder for paired buddies content -->
</div>
<div id="pairedBuddies" class="paired-buddies">
</div>
<script src="script.js"></script>
<script src="clicked.js"></script>
<script src="algorithm.js"></script>
</body>
</html>