-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (47 loc) · 1.91 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="/css/style.css">
<title>Film API on AJAX and Node.js</title>
</head>
<body>
<div id="content-wrapper">
<div class="container">
<div class="row">
<h1>Film API on AJAX and Node.js</h1>
<button class="btn btn-default" id="get-button" type="get-button" name="get-button">Read/Get Films</button>
<form id="create-form">
<input type="text" id="create-input" name="create-input" value="" placeholder="Pirates of the Caribean">
<input type="text" id="create-inputDes" name="create-inputDes" value="" placeholder="It is a very good movie...">
<input type="number" id="create-inputRate" name="create-inputRate" value="" placeholder="1 - 5" min="1" max="5">
<input type="number" id="create-inputRelease" name="create-inputRelease" value="" placeholder="write a year 1930 - 2017" min="1930" max="2017">
<button id="create-button" class="btn btn-default">Create/POST</button>
</form>
<hr>
<table>
<thead>
<tr>
<th>ID</th>
<th>Title</th>
<th>Description</th>
<th>Rating</th>
<th>Released</th>
<th>Actions</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</div>
</div>
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="jQuery.js"></script>
<script src="scripts.js"></script>
</body>
</html>