first commit
This commit is contained in:
41
Html/html/login.html
Normal file
41
Html/html/login.html
Normal file
@@ -0,0 +1,41 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Bird Deterrent System</title>
|
||||
<link rel="stylesheet" type="text/css" href="public/style/style.css">
|
||||
<link rel="stylesheet" type="text/css" href="public/style/bootstrap.min.css">
|
||||
<script src="index.js"></script>
|
||||
<script src="public/js/bootstrap.bundle.min.js"></script>
|
||||
<link rel="stylesheet" href="public/style/jquery.dataTables.min.css">
|
||||
<script src="public/js/jquery-3.7.1.min.js"></script>
|
||||
<script src="public/js/jquery.dataTables.min.js"></script>
|
||||
<!--Link for Icon Fontawesome-->
|
||||
<script src="public/js/all.min.js"></script>
|
||||
<link rel="stylesheet" href="public/style/all.min.css">
|
||||
<script src="login.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="bg-img">
|
||||
<div class="content">
|
||||
<header>Login</header>
|
||||
<form action="/login" method="post">
|
||||
<div class="field space input-rad">
|
||||
<span class="fa-solid fa-user"></span>
|
||||
<input id="username" placeholder="username" name="username" required>
|
||||
</div>
|
||||
<div class="field space input-rad">
|
||||
<span class="fa-solid fa-lock"></span>
|
||||
<input id='login_password' type='password' placeholder='Password' name='password' required>
|
||||
<span class="fa-solid fa-eye" id='buttonShowPasswordLogin' onclick="showPasswordLogin()"></span>
|
||||
</div>
|
||||
<div class="class100 space">
|
||||
<button class="btn btn-primary btn-lg w-100" type="submit">Log In</button>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user