-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (57 loc) · 2.29 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html>
<head>
<!-- google Linking -->
<meta name="google-site-verification" content="NayGsR7Zg41vkqA8BiGtt8gqpwKlhWDuKPZUJUZivOw" />
<!-- google linking -->
<meta charset="utf-8">
<title> Js Crud With Ajax</title>
<link rel="stylesheet" type="text/css" href="css.css">
</head>
<body>
<h1 style='text-align:center; margin-top:20px;'> Javascript Fetch CRUD ( Without Jquery ) </h1>
<h2 style='text-align:center; margin-top:20px;'>
<a href="https://djangir.github.io/fetchcrud.github.io/"> Without Loading </a> </h2>
<h3 style='text-align:center; margin-top:20px;'><a href="https://github.com/djangir/jsondata.github.io"> Show code </a> </h3>
<div class="new1" onclick="showfunction(modal_show)">New User</div>
<div class="table">
<table cellspacing="0" border="1px solid">
<tr>
<th>#</th>
<th>name</th>
<th>action</th>
</tr>
<tbody id="dataa">
</tbody>
</table>
</div>
<div id="error" class="none">Eerror</div>
<!-- pagination -->
<div id="paginations">
<span id="back"></span>
<span id="backpage"></span>
<span id="curpage"></span>
<span id="nextpage"></span>
<span id="next"></span>
</div>
<!-- pagination -->
<div id="modal_show" class="modal none">
<div class="fixed">
<div class="close">X</div>
<form id="form">
<input type="text" id="id" placeholder="id">
<input type="text" id="name" placeholder="name">
<input type="text" id="email" placeholder="email">
<input type="text" id="gender" placeholder="gender">
<input type="text" id="status" placeholder="status">
<div class="submit" onclick="davedata()"> submit
</div>
</form>
</div>
</div>
<div style="margin: 20px; text-align: center;">
<a href="https://digitalduniya.org" target="_blank"> contact : digitalduniya.org </a>
</div>
<script type="text/javascript" src="data.js"></script>
</body>
</html>