-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
39 lines (37 loc) · 2.11 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<title>Sri Skathi Institute of Engineering and Technology</title>
<link href="master/css/#.css" rel="stylesheet">
</head>
<body class="d-flex justify-content-center align-items-center vh-100" style="background-color: #e9ebe9;">
<div class="card shadow-lg p-4" style="max-width: 475px; max-height: 500px; min-width: 400px; min-height: 450px;">
<form action="login.php" method="POST">
<div class="text-center mb-3 mt-4">
<img src="master/images/siet.png" class="img-fluid" alt="Logo" style="max-width: 350px;">
</div>
<div class="text-center mb-4">
<h5>Faculty Login</h5>
</div>
<div class="form-group mb-4">
<input type="email" class="form-control" placeholder=" " name="username" id="email" required>
<label for="email" class="form-label">Email or Username</label>
</div>
<div class="form-group mb-3">
<input type="password" class="form-control" placeholder=" " name="password" id="password" required>
<label for="password" class="form-label">Password</label>
</div>
<div class="mb-5 text-end">
<a href="forget_password.php" class="text-decoration-none">Forgot password?</a>
</div>
<div class="form-group mb-4">
<button type="submit" class="btn btn-success w-100" name="submit" id="submit">Login</button>
</div>
</form>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-qRG5V1v4jPbxvGJFEHFp6S4vEQmnkUmOgCCPU6zZiMfkkrEcWprlBBRU0UgoyI3n" crossorigin="anonymous"></script>
</body>
</html>