-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (51 loc) · 2.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Study Roadmap Creator</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>Study Roadmap Creator</h1>
<!-- Student Information Page -->
<div id="studentInfoPage">
<h2>Student Information</h2>
<label for="name">Name:</label>
<input type="text" id="name" required>
<label for="email">Email:</label>
<input type="email" id="email" required>
<label for="phone">Phone Number:</label>
<input type="tel" id="phone" required>
<button id="nextButton">Next</button>
</div>
<!-- Task Input Page -->
<div id="taskInputPage" style="display: none;">
<h2>Task Input</h2>
<label for="subject">Subject:</label>
<input type="text" id="subject" required>
<label for="task">Task:</label>
<input type="text" id="task" required>
<label for="deadline">Deadline:</label>
<input type="date" id="deadline" required>
<label for="resource">Resource Link:</label>
<input type="url" id="resource" placeholder="https://example.com">
<button id="addTaskBtn">Add Task</button>
<button id="copyButton">Copy Study Plan</button>
<button id="emailButton">Email Study Plan</button>
<button id="shareButton">Share via Web Share</button>
<h3>Tasks</h3>
<div id="roadmap"></div>
<ul id="taskList"></ul>
<div id="progressContainer">
<p>Progress: <span id="progressPercentage">0%</span></p>
<div id="progressBar" class="progress-bar">
<div id="progressFill" class="progress-fill"></div>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>