-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.html
162 lines (160 loc) · 4.86 KB
/
main.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="main.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<title>하루기록 다이어리</title>
</head>
<body>
<div class="userBox">
안녕하세요,
<p id="userID"></p>
님!
<button type="button" id="logout">로그아웃</button>
</div>
<div class="dateBox">
<button id="prevMonth" class="moveBtn" type="button" name="button">
<
</button>
<h1></h1>
<button id="nextMonth" class="moveBtn" type="button" name="button">
>
</button>
</div>
<div class="menuBox">
<button id="listIcon" class="button" type="button">리스트</button>
<button id="writePlan" class="button" type="button">일기 작성</button>
<button id="user" class="button" type="button">사용자 정보</button>
</div>
<br />
<div class="diaryBox">
<div class="firstLine">
<label>날짜</label>
<div id="date"></div>
<button id="Xbutton" type="button">X</button><br />
</div>
<div class="secondLine">
<label>제목 </label>
<input id="title" type="text" value="" size="55" />
<label>날씨</label>
<input id="wheather" type="text" value="" size="1" readonly />
<span id="wheatherPicker">🌞</span>
<div class="wheatherpick">
<span>🌞</span>
<span>⛅</span>
<span>☔</span>
<span>⚡</span>
<span>🌈</span>
<span>❄</span>
<span>🌫</span>
</div>
<label>기분</label>
<input id="feeling" type="text" value="" size="1" readonly />
<span id="emojiPicker">🙂</span>
<div class="pick">
<span>😄</span>
<span>😆</span>
<span>😅</span>
<span>🤣</span>
<span>🥰</span>
<span>🤔</span>
<span>😪</span>
<span>🤒</span>
<span>😭</span>
<span>🤬</span>
<span>🤢</span>
<span>😑</span>
<span>😳</span>
<span>😱</span>
</div>
</div>
<br />
<div class="thirdLine">
<label id="textLabel">내용</label>
<textarea id="textPlan" name="name" rows="20" cols="94"></textarea
><br />
</div>
<div class="forthLine">
<button id="completeButton" type="button" name="button">
작성 완료
</button>
</div>
</div>
<div class="w_diaryBox">
<div class="firstLine">
<label>날짜</label>
<div id="w_date"></div>
<button id="w_Xbutton" type="button">X</button><br />
</div>
<div class="secondLine">
<label>제목 </label>
<input id="w_title" type="text" name="" value="" size="55" />
<label>날씨</label>
<input id="w_wheather" type="text" name="" value="" size="1" readonly />
<span id="w_wheatherPicker">🌞</span>
<div class="w_wheatherpick">
<span>🌞</span>
<span>⛅</span>
<span>☔</span>
<span>⚡</span>
<span>🌈</span>
<span>❄</span>
<span>🌫</span>
</div>
<label>기분</label>
<input id="w_feeling" type="text" name="" value="" size="1" readonly />
<span id="w_emojiPicker">🙂</span>
<div class="w_pick">
<span>😄</span>
<span>😆</span>
<span>😅</span>
<span>🤣</span>
<span>🥰</span>
<span>🤔</span>
<span>😪</span>
<span>🤒</span>
<span>😭</span>
<span>🤬</span>
<span>🤢</span>
<span>😑</span>
<span>😳</span>
<span>😱</span>
</div>
</div>
<br />
<div class="thirdLine">
<label id="textLabel">내용</label>
<textarea id="w_textPlan" name="name" rows="20" cols="94"></textarea
><br />
</div>
<div class="forthLine">
<button id="prevDiary" class="diarymoveBtn" type="button" name="button">
<
</button>
<button id="modifyDiary" type="button" name="button">수정</button>
<button id="removeDiary" type="button" name="button">삭제</button>
<button id="nextDiary" class="diarymoveBtn" type="button" name="button">
>
</button>
</div>
</div>
<div class="calenderBox">
<table>
<thead>
<tr>
<th>일</th>
<th>월</th>
<th>화</th>
<th>수</th>
<th>목</th>
<th>금</th>
<th>토</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<script src="main.js"></script>
</body>
</html>