-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathedit.html
63 lines (59 loc) · 2.67 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://s0.hfdstatic.com/sites/the_hartford/css/screen.min.css?v=2018-03-10_1444930866310">
<div class="jumbotron jumbotron-fluid">
<div class="container">
<h1>The Hartford</h1>
</div>
</div>
</head>
<body>
<a href="index.html">
<button type="button" class="btn btn-primary">Return to list</button>
</a>
<div class="container">
<h2>Edit your item:</h2>
<form action="/action_page.php">
<div class="form-group">
<label for="itemname">Item Name:</label>
<input type="text" class="form-control" id="itemname" placeholder="Enter item name" name="itemname">
</div>
<div class="form-group">
<label for="itemdescription">Item Description:</label>
<input type="text" class="form-control" id="itemdescription" placeholder="Enter item description" name="itemdescription">
</div>
<div class="form-group">
<label for="serial">Serial Number (if applicable):</label>
<input type="text" class="form-control" id="serial" placeholder="Enter serial number" name="serial">
</div>
<div class="form-group">
<label for="itemvalue">Item Value:</label>
<input type="text" class="form-control" id="itemvalue" placeholder="Enter item name" name="itemvalue">
</div>
<div class="row">
<div class="col-sm-3">
<button type="submit" class="btn btn-primary">Submit</button>
</div>
<div clas="col-sm-3">
<a href="index.html">
<button type="button" class="btn btn-primary">Cancel Edit</button>
</a>
</div>
</div>
</form>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
<br><br>
<div class="panel panel-default">
<center style="font-size:small">
<h2>TEAM PANDA 2018</h2>
</center>
</div>
</body>
</html