-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnew.html
146 lines (142 loc) · 6.56 KB
/
new.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="description" content="bullion management site, rare coins, gold, silver, platinum">
<meta name="author" content="CSE134B Dream Team">
<link rel="stylesheet" type="text/css" href="./style/style.css">
<meta name=viewport content="width=device-width, initial-scale=.8, minimum-scale = .8, user-scalable=yes">
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<script src="./js/parse-1.4.2.js"></script>
<script src="./js/jquery-1.11.2.min.js"></script>
<script src="./js/bulliondetail.js"></script>
<script src="./js/backend.js"></script>
<script src="./js/velocity.min.js"></script>
<script src="./js/render.js"></script>
<script src="./js/main.js"></script>
<title>New Item - ShinyStack</title>
</head>
<body>
<noscript>Please enable JavaScript in order to use this website.</noscript>
<script type="text/javascript">
loadTopNav();
</script>
<script type="text/javascript">
loadSideNav(1);
</script>
<section class="main-section">
<section class="coin_wrapper">
<div class="mobile-nav">
<a class="return_link" href="#">
<svg class="icon icon-keyboard-arrow-left">
<symbol id="icon-keyboard-arrow-left" viewBox="0 0 1024 1024">
<title>keyboard-arrow-left</title>
<path class="path1" d="M657.707 696.96l-195.627-195.627 195.627-195.627-60.373-60.373-256 256 256 256z"></path>
</symbol>
<use xlink:href="#icon-keyboard-arrow-left"></use>
</svg>
</a>
ADD ITEM
</div>
<div class="coin_main">
<a class="return_link" href="#">
<div class="breadcrumb">
<svg class="icon icon-play-arrow-rev">
<symbol id="icon-play-arrow" viewBox="0 0 1024 1024">
<title>play-arrow</title>
<path class="path1" d="M682.667 213.333v597.333l-469.333-298.667z"></path>
</symbol>
<use xlink:href="#icon-play-arrow"></use>
</svg>
Add Item
</div>
</a>
<section class="coin_image">
<div class="img_box">
<div class="img_circle"></div>
</div>
</section>
<section class="coin_detail">
<table>
<tr>
<td>Metal</td>
<td>
<select id="metal_type" onchange="update_types()">
<option value="gold">Gold</option>
<option value="silver">Silver</option>
<option selected value="platinum">Platinum</option>
</select>
</td>
</tr>
<tr>
<td>Type</td>
<td>
<select onchange="update_attributes()" id="coin_type">
<option selected value="Australia Platinum Koala">Australia Platinum Koala</option>
<option value="Australia Platinum Platypus">Australia Platinum Platypus</option>
<option value="Canada Platinum Maple Leaf">Canada Platinum Maple Leaf</option>
<option value="Isle of Man Noble">Isle of Man Noble</option>
<option value="Mexico Libertad">Mexico Libertad</option>
<option value="United States Platinum Eagle">United States Platinum Eagle</option>
</select>
</td>
</tr>
<tr>
<td>Weight/unit</td>
<td>
<select id="weight" onchange="update_weight();">
<option selected value=".05">1/20 ozt</option>
<option value=".1">1/10 ozt</option>
<option value=".25">1/4 ozt</option>
<option value=".5">1/2 ozt</option>
<option value="1">1 ozt</option>
</select>
</td>
</tr>
<tr>
<td>Purchase Date</td>
<td>
<input type="date" name="purchase_date" value="" onblur="update_purchase_date();"/>
</td>
</tr>
<tr>
<td>Qty.</td>
<td>
<input type="number" name="quantity" min="1" value="1" onblur="update_weight(); update_total();"/>
</td>
</tr>
<tr>
<td>Premium</td>
<td>
<input type="number" name="premium" min="0.01" value="0.01" onblur="update_total();"/>
</td>
</tr>
<tr>
<td>Unit Price</td>
<td id="unit_price" onblur="update_total();">50.37</td>
</tr>
<tr>
<td>Purity</td>
<td id="purity" data-value=".9995">99.95%</td>
</tr>
<tr>
<td id="total_au_hdr">Total Pt (ozt)</td>
<td id="total_au">0.05</td>
</tr>
<tr>
<td><strong>TOTAL</strong></td>
<td id="added_val"><strong>50.37</strong></td>
</tr>
</table>
<p onclick="saveBullion();" style="cursor:pointer;"><span id="save">Save to My Stack</span></p>
<a href="inventory.html"><span id="cancel">Cancel</span></a>
</section>
</div>
</section>
</section>
<script type="text/javascript">
loadFooter();
</script>
</body>
</html>