-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (62 loc) · 2.55 KB
/
index.html
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login Page-BlewMinds</title>
<!--Font CDN-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Kalam&display=swap" rel="stylesheet">
<!-- FAVICON -->
<link rel="icon" href="icon.png" sizes="32x32">
<!-- CSS CDN -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-KyZXEAg3QhqLMpG8r+8fhAXLRk2vvoC2f3B09zVXn8CA5QIVfZOJ3BCsw2P0p/We" crossorigin="anonymous">
<!-- JavaScript CDN -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous">
</script>
<!-- External Css -->
<link rel="stylesheet" href="login_form.css">
</head>
<body>
<form method="POST" action="login_check.php">
<nav class="navbar navbar-expand-lg navbar-dark " style="background-color: rgb(0, 0, 0);height: 70px;">
<div class="container-fluid" style="background-color: rgb(0, 0, 0);">
<span style="margin-right: 60%;">
<a href="index.html"><img src="logo.png" style="width: 100%;"></a>
</span>
</div>
</nav>
<div class="container">
<div class="card">
<div class="container">
<span class="span1">
<h1>Admin Login</h1>
</span>
</div>
<div class="container">
<span>
<h3 class="span2">Email-Id</h3>
</span>
<span>
<input type="email" required class="span2" placeholder="name@example.com" name="email">
</span> <span>
<h3 class="span2">Password</h3>
</span>
<span>
<input type="password" required class="span2" placeholder="Password" name="password">
</span><br>
<span id="button">
<input type="submit" value="Login" name="submit" >
</span>
<span><p style="color: aliceblue;" id="pa">Are you a Faculty/Team Member?<a href="faculty_login.html">Login</a></p></span>
</div>
</div>
<img src="contact.png" alt="contact" id="img">
</div>
</form>
</body>
</html>