[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>
<html lang="en-ie">
<head>
<meta charset="UTF-8" />
<meta charset="UTF-8"/>
<title>Skynet Sign-up</title>
</head>
<body>
@ -12,16 +12,16 @@
</p>
<form action="temp_success.html">
<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>
<input type="text" id="cn" name="cn" /> <br />
<input type="text" id="cn" name="cn"/> <br/>
<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>
<input type="text" id="mail" name="mail" /> <br />
<input type="text" id="mail" name="mail"/> <br/>
<label for="skDiscord">Discord Username</label>
<input type="text" id="skDiscord" name="skDiscord" /> <br />
<input type="Submit" value="Submit" />
<input type="text" id="skDiscord" name="skDiscord"/> <br/>
<input type="Submit" value="Submit"/>
</form>
<footer>
UL Computer Society 2023-<span id="year">2023</span>

View file

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

View file

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