-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdarkRecordWriting.html
121 lines (120 loc) · 5.79 KB
/
darkRecordWriting.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>술 없는 나의 술 없는 날</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="/css/darkRecord.css" />
<link rel="stylesheet" href="/css/darkRecordDetail.css" />
<link rel="stylesheet" href="css/color.css" />
<link rel="stylesheet" href="css/navigation.css" />
<link rel="icon" href="/img/logo_square.png">
</head>
<body>
<nav class="navigation">
<div class="nav-div">
<div class="nav-frame">
<img id="logo" class="logo-img" src="img/logo.svg" />
</div>
<div class="navbar-list">
<a href="./home.html" class="navbar-items">홈</a>
<a href="./drinkRecord.html" class="navbar-items">음주 기록</a>
<a href="./weeklyDashboard.html" class="navbar-items">음주 분석</a>
<a href="./setting.html" class="navbar-items">설정</a>
</div>
</div>
</nav>
<div class="element">
<div class="frame-wrapper">
<div class="frame">
<div class="div">
<div class="group">
<div class="text-container">
<div class="text-wrapper">
<div class="dropdown-wrapper">
<div class="dropdown">
<button class="btn" type="button" id="dropdownMenuButton" data-bs-toggle="dropdown" aria-expanded="false">
날짜를 선택해 주세요
</button>
<ul class="dropdown-menu" aria-labelledby="dropdownMenuButton" id="date-dropdown">
</ul>
</div>
<p class="text-main">의 기록</p>
</div>
<div class="title-wrapper">
<p class="text-description">어제의 실수를 기록하고 오늘의 교훈으로 삼아요</p>
<img class="wink" src="img/wink.png" width="20" height="20" alt="Wink emoji">
</div>
</div>
<p class="text-description-2"> 최근 일주일 내의 기록만 작성할 수 있어요</p>
</div>
</div>
<div class="form-wrapper">
<form class="form" id="record-form">
<div class="form-top">
<div class="form-left">
<div class="mb-4">
<label for="when" class="form-label">언제?</label>
<input type="text" class="form-control" id="when-content"
placeholder="이 사건은 언제 일어났나요? 시간을 입력해 주세요.">
</div>
<div class="mb-4">
<label for="where" class="form-label">어디서?</label>
<input type="text" class="form-control" id="where-content"
placeholder="이 사건이 발생한 장소는 어디였나요?">
</div>
<div class="mb-4">
<label for="who" class="form-label">누구와?</label>
<input type="text" class="form-control" id="who-content"
placeholder="함께한 사람 또는 당시 상황의 주요 인물은 누구였나요?">
</div>
</div>
<div class="form-right">
<div class="mb-4">
<label for="what" class="form-label">무엇을?</label>
<textarea class="form-control" id="what-content"
placeholder="그날 어떤 일이 있었나요? 주요 사건이나 행동을 기록해보세요."></textarea>
</div>
<div class="mb-4">
<label for="how" class="form-label">어떻게?</label>
<textarea class="form-control" id="how-content"
placeholder="그 일이 어떻게 진행되었나요? 당시 상황을 자세히 적어보세요."></textarea>
</div>
<div class="mb-4">
<label for="why" class="form-label">왜?</label>
<textarea type="text" class="form-control" id="why-content"
placeholder="왜 그런 일이 발생했나요? 당시의 감정이나 상황을 설명해보세요."></textarea>
</div>
</div>
</div>
<div class="form-bottom">
<div class="mb-4">
<label for="reflection" class="form-label">나의 반성과 다짐</label>
<textarea type="text" class="form-control" id="reflection-content"
placeholder="그 사건에 대해 어떤 점을 반성하고 있나요?, 이 경험을 통해 무엇을 배웠으며, 앞으로 어떻게 행동할 계획인가요?"></textarea>
</div>
</div>
</form>
<button
type="submit"
class="btn"
id="submit-btn">
흑역사 기록하기
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
document.getElementById("logo").addEventListener("click", function() {
window.location.href = "./home.html";
});
</script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"></script>
<script src="js/darkRecordWriting.js"></script>
</body>
</html>