-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
56 lines (51 loc) · 2.19 KB
/
popup.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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="utf-8">
<title>일정 관리</title>
<!-- Bootstrap CSS 추가 -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="schedule.css">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<!-- 일정 추가 섹션 -->
<div class="input-group mb-3">
<input type="text" id="newSchedule" class="form-control" placeholder="일정...">
<div class="input-group-append">
<button id="addSchedule" class="btn btn-outline-secondary full-width-btn" type="button">일정 추가</button>
</div>
</div>
<!-- 타이머 및 스톱워치 섹션 -->
<!-- <div class="timer-stopwatch">
<div class="timer">
<h2>타이머</h2>
<span id="timer-time">00:00:00</span>
<button id="timer-start">시작</button>
<button id="timer-stop">정지</button>
<input type="text" id="timer-input" placeholder="분 단위로 시간 입력">
</div>
<div class="stopwatch">
<h2>스톱워치</h2>
<span id="stopwatch-time">00:00:00</span>
<button id="stopwatch-start">시작</button>
<button id="stopwatch-stop">정지</button>
</div>
</div> -->
<!-- 완료된 일정과 진행 중인 일정 버튼 -->
<div class="btn-group mb-3 justify-content-center d-flex" role="group" aria-label="Basic example">
<button id="showCompletedSchedules" type="button" class="btn btn-success full-width-btn">완료!!!</button>
<button id="showActiveSchedules" type="button" class="btn btn-progress full-width-btn">진행중...</button>
</div>
<!-- 일정 목록 -->
<div id="completedSchedules" class="completed-schedules"></div>
<div id="scheduleList" class="sortable"></div>
</div>
<!-- Bootstrap JS와 의존성 파일들 -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<script src="popup.js"></script>
</body>
</html>