Skip to content
Snippets Groups Projects
Commit b3815b72 authored by James Arcus's avatar James Arcus
Browse files

Fix HTML conformance issues

parent 9bce8500
Branches
No related merge requests found
<!doctype html> <!doctype html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="utf-8">
<title>UCC Door Status</title> <title>UCC Door Status</title>
</head> </head>
<body> <body>
...@@ -12,7 +13,7 @@ ...@@ -12,7 +13,7 @@
height="1020" height="1020"
alt="A plain image of the UCC door. Surely nothing sinister lies within..." alt="A plain image of the UCC door. Surely nothing sinister lies within..."
title="A plain image of the UCC door. Surely nothing sinister lies within..." title="A plain image of the UCC door. Surely nothing sinister lies within..."
></img> >
</body> </body>
</html> </html>
......
<!doctype html> <!doctype html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="utf-8">
<title>UCC Door Status</title> <title>UCC Door Status</title>
<script defer>
fetch('/opener').then(response => {
response.json().then(opener => {
if (opener) {
document.getElementById('opener').innerText = opener;
}
});
});
</script>
</head> </head>
<body> <body>
<h1>UCC Door Status</h1> <h1>UCC Door Status</h1>
...@@ -22,7 +14,16 @@ ...@@ -22,7 +14,16 @@
height="1020" height="1020"
alt="A wild Gary lurking in the open doorway to the UCC clubroom." alt="A wild Gary lurking in the open doorway to the UCC clubroom."
title="A wild Gary lurking in the open doorway to the UCC clubroom." title="A wild Gary lurking in the open doorway to the UCC clubroom."
></img> >
<script>
fetch('/opener').then(response => {
response.json().then(opener => {
if (opener) {
document.getElementById('opener').innerText = opener;
}
});
});
</script>
</body> </body>
</html> </html>
......
<!doctype html> <!doctype html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="utf-8">
<title>UCC Door Status</title> <title>UCC Door Status</title>
</head> </head>
<body> <body>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment