-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheditbook.html
More file actions
26 lines (22 loc) · 772 Bytes
/
Copy patheditbook.html
File metadata and controls
26 lines (22 loc) · 772 Bytes
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
{% csrf_token %}
<html>
<head>
<title>editbook</title>
<style>
html,body{text-align:center;margin:0px auto;}
</style>
</head>
<h1 align="center">edit informations</h1>
<hr />
<body bgcolor="#ffff99">
<h2><form action="" method="post" >
<p>ISBN:<input type="text" name="ISBN" value= {{books.ISBN}} ></p>
<p>Title:<input type="text" name="Title" value="{{books.Title}}"></p>
<p>AuthorID:<input type="text" name="AuthorID" value="{{books.AuthorID}}"></p>
<p>Publisher:<input type="text" name="Publisher" value="{{books.Publisher}}"></p>
<p>PublishDate:<input type="date" name="PublishDate" value= "2015/11/3" ></p>
<p>Price:<input type="text" name="Price" value="{{books.Price}}"></p>
<input type="submit" value="submit">
</form></h2>
</body>
</html>