[Reformat] Standardizing the code using the built-in tool

This commit is contained in:
eoghan.conlon 2023-07-29 23:42:37 +01:00
parent 8d17037c0f
commit 4147e8568b
3 changed files with 18 additions and 18 deletions

View file

@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<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 Sign-up</title>
</head> </head>
<body> <body>
@ -12,16 +12,16 @@
</p> </p>
<form action="temp_success.html"> <form action="temp_success.html">
<label for="uid">Username</label> <label for="uid">Username</label>
<input type="text" id="uid" name="uid" /> <br /> <input type="text" id="uid" name="uid"/> <br/>
<label for="cn">First name</label> <label for="cn">First name</label>
<input type="text" id="cn" name="cn" /> <br /> <input type="text" id="cn" name="cn"/> <br/>
<label for="sn">Surname</label> <label for="sn">Surname</label>
<input type="text" id="sn" name="sn" /> <br /> <input type="text" id="sn" name="sn"/> <br/>
<label for="mail">Email</label> <label for="mail">Email</label>
<input type="text" id="mail" name="mail" /> <br /> <input type="text" id="mail" name="mail"/> <br/>
<label for="skDiscord">Discord Username</label> <label for="skDiscord">Discord Username</label>
<input type="text" id="skDiscord" name="skDiscord" /> <br /> <input type="text" id="skDiscord" name="skDiscord"/> <br/>
<input type="Submit" value="Submit" /> <input type="Submit" value="Submit"/>
</form> </form>
<footer> <footer>
UL Computer Society 2023-<span id="year">2023</span> UL Computer Society 2023-<span id="year">2023</span>

View file

@ -1,9 +1,9 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en-ie"> <html lang="en-ie">
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8"/>
<title>Skynet</title> <title>Skynet</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>
<h1>Skynet Password Reset & Sign-up service</h1> <h1>Skynet Password Reset & Sign-up service</h1>
@ -19,10 +19,10 @@
<!--testing2--> <!--testing2-->
<footer> <footer>
UL Computer Society 2023-<span id="year">2023</span> UL Computer Society 2023-<span id="year">2023</span>
</footer> </footer>
</body> </body>
<script> <script>
document.getElementById('year').textContent = new Date().getFullYear().toString() document.getElementById('year').textContent = new Date().getFullYear().toString()
</script> </script>
</html> </html>

View file

@ -1,16 +1,16 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en-ie"> <html lang="en-ie">
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8"/>
<title>Modify user</title> <title>Modify user</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>
<form id="reset"> <form id="reset">
<label for="user">Username</label> <label for="user">Username</label>
<input type="text" id="user" name="user" /> <br /> <input type="text" id="user" name="user"/> <br/>
<label for="pass">Password</label> <label for="pass">Password</label>
<input type="password" id="pass" name="pass" /> <br /> <input type="password" id="pass" name="pass"/> <br/>
<label for="field">Field</label> <label for="field">Field</label>
<select id="field"> <select id="field">
<option value="" selected="selected">Please select an option</option> <option value="" selected="selected">Please select an option</option>
@ -20,10 +20,10 @@
<option value="sn">Surname</option> <option value="sn">Surname</option>
<option value="skDiscord">Discord username</option> <option value="skDiscord">Discord username</option>
</select> </select>
<br /> <br/>
<label for="value">Value</label> <label for="value">Value</label>
<input type="text" id="value" name="value" /> <br /> <input type="text" id="value" name="value"/> <br/>
<input type="Submit" value="Submit" /> <input type="Submit" value="Submit"/>
</form> </form>
<p id="formStatus"></p> <p id="formStatus"></p>
<footer> <footer>