-
Notifications
You must be signed in to change notification settings - Fork 168
/
index.html
62 lines (42 loc) · 1.1 KB
/
index.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
<!DOCTYPE HTML>
<html>
<head>
<title>Cellar</title>
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<div class="header">
<input type="text" id="searchKey"/>
<button id="btnSearch">Search</button>
<button id="btnAdd">New Wine</button>
</div>
<div class="leftArea">
<ul id="wineList"></ul>
</div>
<form id="wineForm">
<div class="mainArea">
<label>Id:</label>
<input id="wineId" name="id" type="text" disabled />
<label>Name:</label>
<input type="text" id="name" name="name" required>
<label>Grapes:</label>
<input type="text" id="grapes" name="grapes"/>
<label>Country:</label>
<input type="text" id="country" name="country"/>
<label>Region:</label>
<input type="text" id="region" name="region"/>
<label>Year:</label>
<input type="text" id="year" name="year"/>
<button id="btnSave">Save</button>
<button id="btnDelete">Delete</button>
</div>
<div class="rightArea">
<img id="pic" height="300"/>
<label>Notes:</label>
<textarea id="description" name="description"></textarea>
</div>
</form>
<script src="js/jquery-1.7.1.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>