-
Notifications
You must be signed in to change notification settings - Fork 0
/
popUpContainer_modModus.html
65 lines (48 loc) · 2.82 KB
/
popUpContainer_modModus.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JOIN - PopUpContainer_modModus</title>
<script src="/js/popUpContainer_modModus.js"></script>
<link rel="stylesheet" type="text/css" href="css/popUpContainer_modModus.css">
<link rel="stylesheet" href="assets/fonts/fonts.css">
</head>
<body>
<div class="popUpBackground">
<div id="popUpContainer" class="PopUpContainer">
<img onclick="slideOut(); renderPopUpContainer()" class="xicon" src="assets/img/icon-x.svg" alt="">
<div class="PopUpMM_Interior">
<div class="PopUpModModus_Head">
<div class="PopUpMM_title">Title</div>
<input id="PopUpMM_title" placeholder="Enter a title">
<div class="PopUpMM_Description">Description</div>
<textarea id="PopUpMM_Description_textarea" placeholder="Enter a description"></textarea>
</div>
<div class="PopUpModModus_Body">
<div class="PopUpMM_DueDate_1">Due Date</div>
<input type="date" id="PopUpMM_dueDate">
<div class="PopUpMM_Priority">Priority</div>
<div class="PopUpMM_Priority_Labels">
<button onclick="priorityRed()" id="PopUpMM_Priority_Labels_red" class="PopUpMM_Priority_Labels_white">Urgent<img id="urgent_img" src="assets/img/prio-urgent.svg"></button>
<button onclick="priorityYellow()" id="PopUpMM_Priority_Labels_yellow" class="PopUpMM_Priority_Labels_white">Medium<img id="medium_img" src="assets/img/prio-medium.svg"></button>
<button onclick="priorityGreen()" id="PopUpMM_Priority_Labels_green" class="PopUpMM_Priority_Labels_white">Low<img id="low_img" src="assets/img/prio-low.svg"></button>
</div>
</div>
<div class="PopUpModModus_Bottom">
<div class="PopUpMM_Assign_title">Assigned to</div>
<select>
<option>Select contacts to assign</option>
<option>David Eisenberg</option>
<option>empty_no Array</option>
</select>
</div>
<div>
<button class="editbtn"><img src="assets/img/pencil-no-bg.svg" alt=""></button>
</div>
</div>
</div>
</div>
</body>
</html>