2023-08-27 19:59:55 +01:00
<!DOCTYPE html>
< html lang = "en" >
2023-09-27 01:58:27 +01:00
< head >
< meta charset = "UTF-8" / >
< title > Account Recovery< / title >
2023-09-27 02:24:15 +01:00
< link href = "../images/favicon/favicon-16x16.png" rel = "icon" type = "image/png" / >
< link href = "../stylesheets/index.css" rel = "stylesheet" type = "text/css" / >
2023-09-27 01:58:27 +01:00
< / head >
< body >
< div class = "wrapper" >
< header class = "page-header" >
2023-09-27 02:24:15 +01:00
< img alt = "Sharky, our mascot" height = "81.56" src = "../images/sharky.svg" width = "145" / >
< h1 > Skynet Self Service< / h1 >
2023-09-27 01:58:27 +01:00
< / header >
< main class = "page-body" >
< h1 > SSH key recovery< / h1 >
2023-11-06 13:11:17 +00:00
< p >
2024-01-01 09:41:24 +00:00
Recover a legacy skynet account using your username and set a new email address to link to the account. Use this only if you do not remember the account password and the linked account email is lost or incorrect.
< br >
Enter skynet username & email you have used with UL Wolves.
2023-11-06 13:11:17 +00:00
< / p >
2023-09-27 01:58:27 +01:00
< form id = "form" >
2023-11-06 13:11:17 +00:00
< table id = "table" >
< tr >
< td > < label for = "user" > Username< / label > < / td >
< td > < input id = "user" name = "user" type = "text" / > < br / > < / td >
< / tr >
< tr >
< td > < label for = "mail" > Email< / label > < / td >
< td > < input id = "mail" name = "mail" type = "email" / > < br / > < / td >
< / tr >
< tr >
2024-01-01 09:41:24 +00:00
< td colspan = "2" > < input id = "button" type = "submit" value = "submit" / > < / td >
2023-11-06 13:11:17 +00:00
< / tr >
< / table >
2023-09-27 01:58:27 +01:00
< / form >
< p id = "formStatus" > < / p >
2024-01-01 09:41:24 +00:00
< script src = "ssh-request.js" > < / script >
2023-09-27 01:58:27 +01:00
< / main >
< footer class = "page-footer" >
UL Computer Society 2023-< span id = "year" > 2023< / span >
< script >
document.getElementById('year').textContent = new Date().getFullYear().toString()
< / script >
< / footer >
< / div >
< / body >
2023-08-27 19:59:55 +01:00
< / html >