Account recovery boilerplate created

This commit is contained in:
eoghan.conlon 2023-08-08 17:24:55 +01:00
parent e4e22b937a
commit 29e5dd5f5e

16
src/recovery.html Normal file
View file

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en-ie">
<head>
<meta charset="UTF-8"/>
<title>Account Recovery</title>
<link rel="icon" type="image/png" href="images/favicon/favicon-16x16.png"/>
</head>
<body>
<footer>
UL Computer Society 2023-<span id="year">2023</span>
</footer>
</body>
<script>
document.getElementById('year').textContent = new Date().getFullYear().toString()
</script>
</html>