-
Notifications
You must be signed in to change notification settings - Fork 4
/
countries.php
30 lines (29 loc) · 1009 Bytes
/
countries.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
<?php
include_once 'layout/head.php';
include_once 'layout/header.php';
include_once 'endpoints/getToken.php';
include_once 'endpoints/getCountries.php';
?>
<main role="main" class="flex-shrink-0">
<div class="container pt-5 mt-5">
<div class="col text-center mb-4">
<h1>Countries</h1>
</div>
<div class="col">
<div class="row">
<?php foreach($countriesResponse as $country) { ?>
<div class="col-4">
<div class="row">
<div class="col-2"><img src="<?=$country->flag?>" width="100%"></div>
<div class="col-2"><?=$country->isoName?></div>
<a href="/country.php?iso=<?=$country->isoName?>" class="col-auto"><?=$country->currencyName?></a>
</div>
</div>
<? } ?>
</div>
</div>
</div>
</main>
<?php
include_once 'layout/footer.php';
?>