summaryrefslogtreecommitdiff
path: root/ifconfig/template.php
blob: 2271887f931344bfcc9e896c0ddc21c16c7e2a03 (plain)
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
<!doctype html>
<html>
<head>
        <meta charset="utf-8">
        <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
	<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
	<style>
	<?php echo file_get_contents("../tools/style.css"); ?>
	</style>
	<noscript><style>.navbar{margin-bottom:0;}</style></noscript>
	<title>IP API</title>
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<link rel='shortcut icon' href='../tools/favicon.ico' type='image/x-icon'>
</head>
<body>
	<?php require("../tools/navbar.php"); ?>
<div class="container">
	<div class="text-center">
		<div class="row">
			<dl class="dl-horizontal">
		<?php
			foreach($result as $key => $value){
				echo "	<dt>".$key."</dd><dd>".$value."</dd>";
			}
		?>
			</dl>
		</div>
	</div>
</div>
	
	<?php require("../tools/footer.php"); ?>