-
Notifications
You must be signed in to change notification settings - Fork 0
/
edit.html
32 lines (30 loc) · 1.48 KB
/
edit.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
<!DOCTYPE html>
<html>
<head>
<title>Edit</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1 class="head">EDIT BOOK INFORMATION</h1>
<br><br>
<a class="success-message-edit" id="successMessage1" href="#successMessage1">
Record edited successfully
</a>
<!-- <a class="error-message" class="head" id="successMessage" href="#successMessage">
Record not inserted successfully
</a> -->
<br><br>
<form action="Edit" method="post" >
<div class="edit-form">
ID: <br><input type="text" size="50" name="editVal"><br><br>
Product Name: <br><input type="text" size="50" name="pname"><br><br>
Product Quantity: <br><input type="text" size="50" name="qty"><br><br>
Product Price: <br><input type="text" size="50" name="price"><br><br>
<br><br>
<input class="btns" type="submit" value="Update">
</div>
</form>
</body>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
</html>