forked from priyanka-bitra/BookHub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AccountInfo.html
46 lines (44 loc) · 949 Bytes
/
AccountInfo.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>
<body>
<h1>Your Account Information! </h1>
Last Name: </br>
First Name: </br>
Recovery Email: </br>
Change Password: </br>
<h2>Books Detials</h2>
<table>
<tr>
<th>Book Name</th>
<th>Author</th>
<th>Edition</th>
<th>Availability</th>
</tr>
<tr>
<td>B1</td>
<td>A1</td>
<td>E</td>
<td>
<input type="radio" name="available" value="Yes"/>Yes
<input type="radio" name="notAvailable " value="No"/>No
</td>
</tr>
<tr>
<td>B2</td>
<td>A2</td>
<td>E</td>
<td>
<input type="radio" name="available1" value="Yes"/>Yes
<input type="radio" name="notAvailable1" value="No"/>No
</td>
</tr>
<tr>
<td>B3</td>
<td>A3</td>
<td>E</td> <td>
<input type="radio" name="available2" value="Yes"/>Yes
<input type="radio" name="notAvailable2" value="No"/>No
</td>
</tr>
</body>
</html>