-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (53 loc) · 2.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta name="theme-color" content="crimson">
<title>Ejercicio Api RestFul</title>
<link rel="stylesheet" type="text/css" href="static/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="static/css/main.css">
</head>
<body>
<nav class="navbar bg-dark navbar-dark">
<h5 class="text-light" href="#">Task
<span id="count" class="badge badge-pill badge-light"></span>
</h5>
<div class="mx-auto">
<input type="text" name="" id="search" class="form-control search" placeholder="SEARCH TASK HERE">
</div>
</nav>
<div id="root" class="container pb-4">
<div class="row">
<div class="col-md-4 pt-4">
<div id="messages"></div>
<div class="card card-body" id="card">
<div id="IDTASK" class="badge badge-pill badge-light"></div>
<form id="taskForm">
<div class="form-group">
<input type="text" id="title" class="form-control" placeholder="Title:" />
</div>
<div class="form-group">
<input type="text" id="priority" class="form-control" placeholder="Priority:">
</div>
<div class="form-group">
<textarea type="text" id="description" class="form-control" placeholder="Description:"></textarea>
</div>
<div class="form-group">
<button class="btn btn-primary btn-block" type="submit" id="btnSend">ADD TASK</button>
<span id="mode"></span>
</div>
</form>
</div>
</div>
<div class="col-md-8">
<div id="cards" class="form-row"></div>
</div>
</div>
</div>
<script type="text/javascript" src="static/js/jquery-3.3.1.min.js"></script>
<script type="text/javascript" src="static/js/bootstrap.min.js"></script>
<script type="text/javascript" src="static/js/popper.js"></script>
<script type="text/javascript" src="static/js/index.js"></script>
</body>
</html>