-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (48 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<h1 id="heading">
CRUD Application
</h1>
<section id="details">
<form autocomplete="off" onsubmit="onFormSubmit()" name="crud-app">
<label for="box1"> Customer Name</label>
<br>
<input type="text" id="box1">
<br>
<label for="box2">Customer ID</label>
<br>
<input type="number" id="box2">
<br>
<label for="box3">Phone number</label>
<br>
<input type="number" id="box3">
<br>
<br>
<button id="btn">Submit</button>
</form>
</section>
<br>
<hr>
<td>
<table class="info" id="storelist">
<thead>
<tr>
<th class="row">Customer Name</th>
<th class="row">Customer ID</th>
<th class="row">Phone Number</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</td>
<script src="script.js"></script>
</body>
</html>