-
Notifications
You must be signed in to change notification settings - Fork 0
/
items.html
93 lines (87 loc) · 4.28 KB
/
items.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Monolith Mobile</title>
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" type="text/css" href="style/reset.css" />
<link rel="stylesheet" type="text/css" href="style/root.css" />
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/toogle.js"></script>
</head>
<body>
<!-- start header -->
<div id="header">
<a href="#"><img src="img/logo.png" width="77" height="24" alt="logo" class="logo" /></a>
<a href="main.html" class="button back"><img src="img/back-button.png" width="15" height="16" alt="icon" /></a>
<a href="#" class="button search"><img src="img/search.png" width="16" height="16" alt="icon"/></a>
<a href="form.html" class="button create"><img src="img/create.png" width="16" height="16" alt="icon"/></a>
<div class="clear"></div>
</div>
<!-- end header -->
<!-- start searchbox -->
<div class="searchbox">
<form id="form1" name="form1" method="post" action="">
<input type="text" name="textfield" id="textfield" class="txtbox" />
</form>
</div>
<!-- end searchbox -->
<!-- start page -->
<div class="page">
<div class="simplebox">
<h1 class="titleh">Items</h1>
<div class="content">
<form id="form12" name="form1" method="post" action="?pg=items">
<div class="form-line">
<label>Item <input type="text" name="ItemID" id="ItemID" style=" width:80%;" /></label>
</div>
<div class="form-line">
<label class="st-label">Description</label>
<textarea name="Description" id="Description" style="width:80%;" rows="3" cols="3"></textarea>
</div>
<div class="form-line">
<label>Prop1 <input type="text" name="textfield3" id="textfield3" style=" width:50%;" /></label>
</div>
<div class="form-line">
<label>Price/Coust <input type="text" name="textfield4" id="textfield4" style=" width:25%;" /></label>
</div>
<div class="form-line">
<label>Price With VAT <input type="text" name="textfield5" id="textfield5" style=" width:25%;" /></label>
</div>
<div class="form-line">
<label>Price Without VAT <input type="text" name="textfield6" id="textfield6" style=" width:25%;" /></label>
</div>
<div class="form-line">
<label>P Line <input type="text" name="textfield7" id="textfield7" style=" width:10%;" /></label>
</div>
<div class="form-line">
<label>Price <input type="text" name="textfield8" id="textfield8" style=" width:25%;" /></label>
</div>
<div class="form-line">
<label>Price with VAT <input type="text" name="textfield9" id="textfield9" style=" width:25%;" /></label>
</div>
<div class="form-line">
<label><input type="checkbox" name="marginBox" id="marginBox" onclick=" if(document.getElementById('marginBox').checked){ document.getElementById('margin').style.display='';
}else{
document.getElementById('margin').style.display='none';
}" value="1"/>Margin</label> <input style="display:none" type="text" name="textfield10" id="margin" style=" width:25%;" />
</div>
<div class="form-line">
<label><input type="submit" class="submit-button" value="SEARCH"/></label>
</div>
</form>
</div>
</div>
<!-- start top button -->
<div class="topbutton"><a href="#header"><span>Top</span></a></div>
<!-- end top button -->
<!-- start footer -->
<div class="footer">
© 2012 - Cupcake Mobile by <a href="http://themeforest.net/user/egemem" target="_blank">egemem</a>
</div>
<!-- end footer -->
<div class="clear"></div>
</div>
<!-- end page -->
</body>
</html>