Sign-up page html page added, register's title changed to register
This commit is contained in:
parent
f46b76e94f
commit
2a109f26f3
2 changed files with 18 additions and 1 deletions
|
@ -2,7 +2,7 @@
|
|||
<html lang="en-ie">
|
||||
<head>
|
||||
<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"/>
|
||||
</head>
|
||||
<body>
|
||||
|
|
17
src/signup.html
Normal file
17
src/signup.html
Normal 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>
|
Loading…
Reference in a new issue