-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
36 lines (31 loc) · 833 Bytes
/
home.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
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<div style="text-align: center;">
<h1> Rate Converter</h1>
<form method="post" action="#">
{% csrf_token %}
<input type="number" name="value" placeholder="value">
<select name="homrcur">
<option value="">--Select HomeCurrency--</option>
{% for each in countryCode %}
<option value="{{ each }}">{{ each }}</option>
{% endfor %}
</select>
<select name="targetcur">
<option value="">--Select HomeCurrency--</option>
{% for each in countryCode %}
<option value="{{ each }}">{{ each }}</option>
{% endfor %}
</select>
<input type="submit">
</form>
{% if targetCurrency != '' %}
<h1>{{ value }}{{ HomeCur }} = {{ targetCurrency }} {{ targetcur }}</h1>
{% endif %}
</div>
</body>
</html>