-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
70 lines (60 loc) · 2.58 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://use.fontawesome.com/584e2c53ae.js"></script>
<link rel="stylesheet" type="text/css" href="css/styles.css">
<title>Trello Like App</title>
</head>
<body>
<div class="container">
<div class="">
<button type="button" class="btn btn-success" data-toggle="modal" data-target="#listModal">
Add new List
</button>
<div class="row list-container" id="lists">
</div>
</div>
</div>
<div class="modal fade" id="listModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="myModalLabel">List</h4>
</div>
<div class="modal-body">
<input type="text" name="list-name" id="listName" placeholder="List Name" class="form-control">
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary" id="listNameBtn">Save changes</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="cardModal" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title">Card</h4>
</div>
<div class="modal-body">
<input type="text" name="list-name" id="username" placeholder="username of member" class="form-control">
<input type="text" name="list-name" id="status" placeholder="status of task" class="form-control">
<textarea class="form-control" cols="10" rows="5" id="description"></textarea>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary" id="cardBtn">Save changes</button>
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.2.0.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="js/index.js"></script>
</body>
</html>