-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcrud-jquery.html
More file actions
93 lines (91 loc) · 3.43 KB
/
crud-jquery.html
File metadata and controls
93 lines (91 loc) · 3.43 KB
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
<!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">
<title>MyWishList</title>
<meta name="description" content="Source code generated using layoutit.com">
<meta name="author" content="LayoutIt!">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/crud-ajax.js"></script>
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<nav class="navbar navbar-default" role="navigation">
<div class="navbar-header">
<button class="navbar-toggle" type="button" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span><span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span>
</button> <a class="navbar-brand" href="index-jquery.html">MyWishList</a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li>
<a href="#">Contato</a>
</li>
<li>
<a href="#">Sobre</a>
</li>
</ul>
<form class="navbar-form navbar-left" role="search">
<div class="form-group">
<input class="form-control" type="text">
</div>
<button class="btn btn-default" type="submit">
Encontrar um amigo
</button>
</form>
<ul class="nav navbar-nav navbar-right">
<li>
<a href="#">Registre-se</a>
</li>
<li class="active">
<a href="crud-jquery.html">Entre</a>
</li>
</ul>
</div>
</nav>
<div class="jumbotron well">
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<h2 class="text-info text-center bg-primary">WishList</h2>
<hr>
<div id="form-well" class="well">
<h4>Adicionar novo item:</h4>
<form id="form-novo-item" action="#">
<div id="form-group-nome" class="form-group">
<label for="nome-input" class="control-label">Item</label>
<input id="nome-input" type="text" class="form-control" name="nome" value="">
<span id="help-block-nome" class="help-block"></span>
</div>
<button type="submit" class="btn btn-success btn-xs">Adicionar</button>
</form>
</div>
<button id="botao-novo-item" class="btn btn-primary">Adicionar item na lista</button>
<hr>
<table class="table table-striped table-hover">
<thead>
<tr>
<th>ID</th>
<th>CREATION</th>
<th>ITEM</th>
</tr>
</thead>
<tbody id="tabela-itens">
</tbody>
</table>
<img id="listar-ajax-loader" src="images/ajax-loader.gif" hidden="hidden"/>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>