forked from diurivj/restfulcrud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (43 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link
href="https://fonts.googleapis.com/css?family=Nanum+Gothic"
rel="stylesheet"
/>
<link rel="stylesheet" href="styles.css" />
<title>IH CRUD</title>
</head>
<body>
<div id="container">
<section id="all">
<h2>All characters</h2>
<button id="fetch-all">Fetch</button>
</section>
<section id="single">
<h2>One character</h2>
<input type="text" id="fetch-one-input" placeholder="id" />
<button id="fetch-one">Fetch</button>
</section>
<section id="edit">
<h2>Edit character</h2>
<input type="text" id="edit-one-input" placeholder="id" />
<input type="text" name="name" placeholder="name" />
<input type="text" name="occupation" placeholder="occupation" />
<input type="text" name="weapon" placeholder="weapon" />
<input type="text" name="debt" placeholder="debt" />
<button id="edit-one">Edit</button>
</section>
<section id="delete">
<h2>Delete character</h2>
<input type="text" id="delete-one-input" placeholder="id" />
<button id="delete-one">Delete</button>
</section>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.18.0/axios.min.js"></script>
<script src="main.js"></script>
</body>
</html>