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
|
<!DOCTYPE html> <html lang="en-HK" prefix="og: http://ogp.me/ns#">
<head> <title>JobReader - Setting</title> <!-- css --> <?php include 'inc/headlinks.php';?> <!-- js --> <?php include 'inc/link-js.php';?> </head>
<body>
<!-- header --> <?php include 'inc/header.php';?> <!-- end of header-->
<?php include 'inc/setting_nav.php';?>
<section class="wrapper">
<div class="container"> <div class="d-flex align-items-center mb-4"> <div class="h1"> Manage Folder </div>
</div> <p class="mb-2">Organize job ads and candidates by using folders.</p>
<div class="d-flex align-items-start"> <div class="form-group fullWidth">
<input type="text" class="form-control" id="newFolderName" placeholder="Search folder name">
</div> <div class="pl-2"> <button href="#" class="btn btn-primary">Add</button> </div> </div>
<p class="mt-2 mb-2">Current Folders</p> <div class="c-table"> <div class="c-tableHead fieldWord"> Folder Name </div> <div class="c-tableTr d-flex"> <p class="m-0"><i class="far fa-folder"></i> [No folder]</p> <a href="#" class="link ml-auto" data-toggle="modal" data-target=".deletFloder"><i class="fas fa-times"></i></a> </div> <div class="c-tableTr d-flex"> <p class="m-0"><i class="far fa-folder"></i> Admin</p> <a href="#" class="link ml-auto" data-toggle="modal" data-target=".deletFloder"><i class="fas fa-times"></i></a> </div> <div class="c-tableTr d-flex"> <p class="m-0"><i class="far fa-folder"></i> HR</p> <a href="#" class="link ml-auto" data-toggle="modal" data-target=".deletFloder"><i class="fas fa-times"></i></a> </div> </div>
<!-- <hr /> <div class="btnWrap text-center">
<button type="button" class="btn btn-primary" onclick="#">Save</button> </div> -->
</div>
</section>
<!-- end #section -->
<!-- Modal --> <div class="modal fade deletFloder" tabindex="-1" role="dialog" aria-labelledby="eventDateModal" aria-hidden="true"> <div class="modal-dialog modal-md modal-dialog-centered" role="document"> <div class="modal-content">
<div class="modal-body"> <p class="h3 mb-4">Delete folder “[folder name]”?</p> <p class="font09">Are you sure you want to delete the folder “[folder name]’?
<br /> The job ads and candidates will not be deleted.
</p> </div> <div class="modal-footer"> <button type="button" class="btn btn-outline-primary" data-dismiss="modal">Cancel</button> <button type="button" class="btn btn-primary">Delete</button>
</div> </div> </div> </div>
<!-- footer --> <?php include 'inc/footer_n.php';?> <!-- end of footer -->
<!-- custom JS --> </body>
<script>
</script>
</html>
|