Initial Commit with files

This commit is contained in:
2023-03-28 15:46:20 -04:00
commit 7f4b0bb78f
15 changed files with 1416 additions and 0 deletions

18
Login Page/login.html Normal file
View File

@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<title>17th Rangers Administration Portal Login</title>
<link rel="stylesheet" href="styles.css">
<script src="scripts.js"></script>
</head>
<body>
<form class="login-form">
<h1 class="heading">17th Rangers Administration Portal</h1>
<label for="username" class="label">Username:</label>
<input type="text" id="username" class="input" name="username"><br>
<label for="password" class="label">Password:</label>
<input type="password" id="password" class="input" name="password"><br><br>
<button type="button" class="button" onclick="login()">Login</button>
</form>
</body>
</html>