-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheditcopy2.html
51 lines (51 loc) · 2.09 KB
/
editcopy2.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
<!doctype html>
<html>
<head>
<title>Edit Copy</title>
<!--link to the style sheet-->
<link rel="stylesheet" type="text/css" href="css/base.css">
</head>
<body>
<div class="pageheader">
<!--insert logo-->
<img src="img/logo.png" alt="Page Logo" height="175" width="325" align="right">
<h1>Edit Copy</h1>
</div>
<br />
<div class="form">
<!--declare a form which links to the asp page for the function-->
<form method="post" action="suc_edit.html"></br>
<!--creates the input controls for editing a book copy -->
<label for="coy_barcode">Copy Barcode:</label><input name="coy_barcode" type="text" size="20" id="input-style" value="000000000009"></br>
<label for="loan_type">Loan Type:</label>
<select name="Loan Type" id="input-style">
<option value="Normal">Normal</option>
<option value="Short">Short</option>
<option value="NotForLoan">Not For Loan</option>
</select></br>
<label for="status">Status:</label>
<select name="Status" id="input-style">
<option value="Available">Available</option>
<option value="Unavailable">Unavailable</option>
<option value="Withdrawn">Withdrawn</option>
<option value="Lost">Lost</option>
</select></br>
<label for="condition">Condition:</label>
<select name="Condition" id="input-style">
<option value="Good">Good</option>
<option value="Poor">Poor</option>
<option value="Damaged">Damaged</option>
</select></br>
<label for="isbn">ISBN:</label><input name="isbn" type="text" size="20" id="input-style" value="09946950"></br>
<!--creates the submit and reset buttons for the user to complete the form-->
<input name="Save Changes" type="submit" value="Save Changes">
<input name="Save Changes" type="reset" value="Clear">
</form>
</div>
<footer>
<!-- inserts back and help buttons -->
<button class="buttons" id="btnHelp" onClick="location.href = 'http://my.tech.dmu.ac.uk/~p13198051/help.html'"> Help </button>
<button class="buttons" id="btnRtn" onClick="history.go(-1);return true;"> Return </button>
</footer>
</body>
</html>