Account recovery boilerplate created
This commit is contained in:
parent
e4e22b937a
commit
29e5dd5f5e
1 changed files with 16 additions and 0 deletions
16
src/recovery.html
Normal file
16
src/recovery.html
Normal 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>
|
Loading…
Reference in a new issue