-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTask.html
More file actions
132 lines (121 loc) · 5.85 KB
/
Task.html
File metadata and controls
132 lines (121 loc) · 5.85 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
Remove this if you use the .htaccess -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Task</title>
<meta name="description" content="">
<meta name="author" content="sec">
<meta name="viewport" content="width=device-width; initial-scale=1.0">
<!-- Replace favicon.ico & apple-touch-icon.png in the root of your domain and delete these references -->
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0-wip/css/bootstrap.min.css">
<link rel="stylesheet" href="../stylesheets/Task.css">
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0-wip/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jqueryui/1.11.2/jquery-ui.min.js"></script>
<script src="../javascripts/Task.js"></script>
</head>
<body>
<a class="new btn btn-default">새 할 일</a>
<a class="addlabel btn btn-default" data-toggle="modal" href="#labelModal" >새 라벨</a>
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-body">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">
×
</button>
<input type="text" id="Task_Name" class="input_title" placeholder="할 일 이름">
<div>
<span class="datewidth">시작일
<input type="date" id="Task_Sday"></span>
<span class="datewidth">마감일
<input type="date" id="Task_Dday"></span>
</div>
<div>
담당자
<div id="plz" class="memlist" multiple="multiple"></div>
</div>
<textarea id="Task_Memo" placeholder="상세내용"></textarea>
<button type="submit" id="my_save_btn" class="btn btn-primary" data-dismiss="modal">
저장
</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="editModal" tabindex="-1" role="dialog" aria-labelledby="editModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-body">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">
×
</button>
<div>
<input type="text" id="Modify_Name" class="input_title" placeholder="할 일 이름">
<div class="tog_edit">
<button id="toggle" name=""></button>
</div>
</div>
<div>
<span class="datewidth">시작일
<input type="date" id="Modify_Sday"></span>
<span class="datewidth">마감일
<input type="date" id="Modify_Dday"></span>
</div>
<div>
담당자
<div id="meml" class="memlist" multiple="multiple"></div>
</div>
<textarea id="Modify_Memo" placeholder="상세내용"></textarea>
<button type="button" id="TaskModifyBtn" class="btn btn-primary" data-dismiss="modal">
수정
</button>
</div>
<div class="modal-footer">
<div id= "met"></div>
<div>
<input type="text" id="CoText" name="text" autocomplete="off" >
<input type="button" id="Comment" onclick="Comment()" value="입력" >
</div>
</div>
</div>
</div>
</div>
<div class="modal fade" id="labelModal" tabindex="-1" role="dialog" aria-labelledby="labelModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-body">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">
×
</button>
<h4 class="modal-title">새 라벨</h4>
<input type="text" id="Label_Name" class="input_title" placeholder="새 라벨 이름">
<button type="button" id="label_save_btn" class="btn btn-primary" data-dismiss="modal">
라벨 추가
</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="editlabelModal" tabindex="-1" role="dialog" aria-labelledby="editlabelModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-body">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">
×
</button>
<h4 class="modal-title">라벨 이름 변경</h4>
<input type="text" id="Label_Name1" class="input_title">
<button type="submit" id="LabelModifyBtn" class="btn btn-primary" data-dismiss="modal">
저장
</button>
</div>
</div>
</div>
</div>
</body>
</html>