Sign-up page html page added, register's title changed to register

This commit is contained in:
eoghan.conlon 2023-08-07 18:08:54 +01:00
parent f46b76e94f
commit 2a109f26f3
2 changed files with 18 additions and 1 deletions

View file

@ -2,7 +2,7 @@
<html lang="en-ie"> <html lang="en-ie">
<head> <head>
<meta charset="UTF-8"/> <meta charset="UTF-8"/>
<title>Skynet Sign-up</title> <title>Skynet Register</title>
<link rel="icon" type="image/png" href="images/favicon/favicon-16x16.png"/> <link rel="icon" type="image/png" href="images/favicon/favicon-16x16.png"/>
</head> </head>
<body> <body>

17
src/signup.html Normal file
View file

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en-ie">
<head>
<meta charset="UTF-8"/>
<title>Skynet Sign-up</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>