25 lines
957 B
HTML
25 lines
957 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Login | Sentinel</title>
|
|
<link rel="icon" type="image/x-icon" href="/assets/icons/favicon.ico">
|
|
<link rel="stylesheet" href="/css/styles.css">
|
|
</head>
|
|
<body>
|
|
<div class="loginPane">
|
|
<div class="loginHeader">
|
|
<h1>Login</h1>
|
|
<h3>Please enter your login credentials below</h3>
|
|
</div>
|
|
<div class="loginForm">
|
|
<form>
|
|
<label for="username">Username</label><br>
|
|
<input type="text" id="username" name="username" placeholder="Enter your username"><br>
|
|
<label for="password">Password</label><br>
|
|
<input type="text" id="Password" name="password" placeholder="Enter your password"><br><br>
|
|
<input type="submit" value="Submit">
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |