Files
17th_Site_Front_End/Login Page/login.html
2023-03-28 15:46:20 -04:00

18 lines
673 B
HTML

<!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>