mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 19:21:03 +01:00
18 lines
344 B
HTML
18 lines
344 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Iris Cors Example</title>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<ul id="list">
|
||
|
</ul>
|
||
|
|
||
|
<input type="button" value="Fetch Data" id="fetchBtn" />
|
||
|
|
||
|
<script src="main.js"></script>
|
||
|
</body>
|
||
|
</html>
|