HTML for ssh recovery completed, incl. script for footer
Signed-off-by: Eoghan Conlon <eoghanconlon73@skynet.ie>
This commit is contained in:
parent
6dc89697e9
commit
b3531da019
1 changed files with 24 additions and 0 deletions
24
src/recovery/ssh-request.html
Normal file
24
src/recovery/ssh-request.html
Normal file
|
@ -0,0 +1,24 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>SSH key recovery</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>SSH key recovery</h1>
|
||||
<form id="form">
|
||||
<label for="user">Username</label>
|
||||
<input type="text" id="user" name="user" /> <br />
|
||||
<label for="mail">Email</label>
|
||||
<input type="email" id="mail" name="mail" /> <br />
|
||||
<input type="submit" />
|
||||
</form>
|
||||
<p id="formStatus"></p>
|
||||
<footer>
|
||||
UL Computer Society 2023-<span id="year">2023</span>
|
||||
</footer>
|
||||
<script>
|
||||
document.getElementById('year').textContent = new Date().getFullYear().toString()
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in a new issue