-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
122 lines (122 loc) · 3.9 KB
/
index.php
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
<!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>Curs valutar</title>
<link href="css/style.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="js/jquery-1.7.2.js"></script>
<script type="text/javascript" src="js/myscript.js"></script>
</head>
<body>
<table class="maintable" align="center" width="600" border="0" cellspacing="0">
<tr>
<td align="center" colspan="2">
<h1 class="toptext">Curs valutar Banca Naţională a Moldovei</h1>
</td>
</tr>
<tr>
<?php include "blocks/topNav.php" ?>
</tr>
<tr valign="top">
<td>
<div class="convertor">
<h2 class="convtop">Convertor valutar</h2>
<br />
<span class="seltext">Din</span>
<span class="from">Introdu suma</span>
<div style="clear:both; height:0px;"></div>
<input type="text" id="inputfrom" size="10" maxlength="10" allowed=".0123456789" messageid="zipwarn"/>
<select id="selectfrom">
</select>
<div style="clear:both; height:0px;"></div>
<br />
<span id="zipwarn" class="hidden" style="color:red;">Introduceţi cifre</span>
<div class="swap">
<a href="#" id="swap">
<img src="img/swap.png" border="0">
</a>
</div>
<br />
<span class="seltext">In</span>
<span class="to">Rezultat</span>
<div style="clear:both; height:0px;"></div>
<input type="text" id="inputto" size="10" allowed=" "/>
<select id="selectto">
</select>
<div style="clear:both; height:0px;"></div>
<a href="#" class="clearBtn">
<img border="0" id="clearbtn" src="img/clear.png" />
</a>
</div>
</td>
<td>
<table class="table2" width="320" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class='tabel_c1'>
<img class='v_align' src='img/countries/eur.jpg' alt='EUR'>
<span class='textmare'>EUR</span>
<span class='textspacer'></span>
<span class='namevalute'>Euro</span>
</td>
<td id="eur" class='tabel_c2'>
</td>
</tr>
<tr>
<td class='tabel_c1'>
<img class='v_align' src='img/countries/usd.jpg' alt='EUR'>
<span class='textmare'>USD</span>
<span class='textspacer'></span>
<span class='namevalute'>Dolar S.U.A.</span>
</td>
<td id="usd" class='tabel_c2'>
</td>
</tr>
<tr>
<td class='tabel_c1'>
<img class='v_align' src='img/countries/gbp.jpg' alt='GBP'>
<span class='textmare'>GBP</span>
<span class='textspacer'></span>
<span class='namevalute'>Lira sterlina</span>
</td>
<td id="gbp" class='tabel_c2'>
</td>
</tr>
<tr>
<td class='tabel_c1'>
<img class='v_align' src='img/countries/ron.jpg' alt='RON'>
<span class='textmare'>RON</span>
<span class='textspacer'></span>
<span class='namevalute'>Leu romanesc</span>
</td>
<td id="ron" class='tabel_c2'>
</td>
</tr>
<tr>
<td class='tabel_c1'>
<img class='v_align' src='img/countries/rub.jpg' alt='RUB'>
<span class='textmare'>RUB</span>
<span class='textspacer'></span>
<span class='namevalute'>Rubla rusa</span>
</td>
<td id="rub" class='tabel_c2'>
</td>
</tr>
<tr>
<td class='tabel_c1'>
<img class='v_align' src='img/countries/uah.jpg' alt='UAH'>
<span class='textmare'>UAH</span>
<span class='textspacer'></span>
<span class='namevalute'>Hrivna ucraineana</span>
</td>
<td id="uah" class='tabel_c2'>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="2"> </td>
</tr>
</table>
</body>
</html>