27 lines
701 B
HTML
27 lines
701 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Frontend</title>
|
||
|
<script>
|
||
|
window.onload = function () {
|
||
|
fetch('/api', { method: 'get'}).then((response) => {
|
||
|
const json = response.json();
|
||
|
if (response.ok) {
|
||
|
return json;
|
||
|
}
|
||
|
return Promise.reject(new Error('Something went wrong.'));
|
||
|
})
|
||
|
.then((response) => {
|
||
|
document.getElementById('version').innerHTML = JSON.stringify(response);
|
||
|
}).catch((error) => {
|
||
|
document.getElementById('error').innerHTML = error && error.message || 'Something else went wrong.';
|
||
|
});
|
||
|
};
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>My Application Version</h1>
|
||
|
<p id="version"></p>
|
||
|
<p id="error"></p>
|
||
|
</body>
|
||
|
</html>
|