-
Notifications
You must be signed in to change notification settings - Fork 1
/
currencyConverter.html
41 lines (33 loc) · 1.52 KB
/
currencyConverter.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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
</head>
<body>
<div id="body">
<div class="currency-converter-container">
<h2>Currency Converter</h2>
<div class="clear-float"></div>
<div class="blank-line"></div>
<div class ="converter-Element">
<label>Convert From: </label>
<select class='currency-selecter js-currencyFrom'>
</select>
<input class="currency-From" name="stockInput" maxlength="100"
autofocus="autofocus" required="required" type="text" value="" />
<label>Convert To: </label>
<select class='currency-selecter js-currencyTo'>
</select>
<div class="currency-converted">
<input class="currency-converted-box" name="stockInput" maxlength="100"
autofocus="autofocus" disabled required="required" type="text" value="" />
<label class="js-error-message"></label>
</div>
</div>
</div>
</div>
<script src="assets/crux/js/libs/jquery.js"></script>
<script src="assets/app/js/currencyConverter.js"></script>
<link href="assets/app/css/currencyConverter.css" rel="stylesheet" />
</body>
</html>