forked from itflow-org/itflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
add_document_modal.php
56 lines (53 loc) · 2.26 KB
/
add_document_modal.php
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
<div class="modal" id="addDocumentModal" tabindex="-1">
<div class="modal-dialog modal-xl">
<div class="modal-content bg-dark">
<div class="modal-header">
<h5 class="modal-title"><i class="fa fa-fw fa-file-alt"></i> New Document</h5>
<button type="button" class="close text-white" data-dismiss="modal">
<span>×</span>
</button>
</div>
<form action="post.php" method="post" autocomplete="off">
<input type="hidden" name="client_id" value="<?php echo $client_id; ?>">
<div class="modal-body bg-white">
<div class="form-group">
<input type="text" class="form-control" name="name" placeholder="Name" required autofocus>
</div>
<?php
if($document_tags) {
foreach($document_tags as $document_tag) {
?>
<!-- Document Tags select start -->
<div class="form-group">
<div class="button-group">
<button type="button" class="btn btn-default btn-sm dropdown-toggle" data-toggle="dropdown">
<span class="fa fa-fw fa-tag"></span> <span class="caret"></span>
</button>
<ul class="dropdown-menu">
<li>
<div class="form-check">
<label>
<input class="form-check-input" type="checkbox" value="<?php echo $document_tag['tag_id'] ?>" name="tags_ids[<?php echo $document_tag['tag_id']; ?>]"> <?php echo htmlentities($document_tag['tag_name']); ?>
</label>
</div>
</li>
</ul>
</div>
</div>
<!-- Document tags select end -->
<?php
}
}
?>
<div class="form-group">
<textarea class="form-control summernote" name="content"></textarea>
</div>
</div>
<div class="modal-footer bg-white">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Cancel</button>
<button type="submit" name="add_document" class="btn btn-primary">Save</button>
</div>
</form>
</div>
</div>
</div>