-
Notifications
You must be signed in to change notification settings - Fork 1
/
admin-login.html
71 lines (64 loc) · 3.19 KB
/
admin-login.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
69
70
71
<!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">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="check.js"></script>
<title>Doctor's Login</title>
</head>
<body>
<section class="header">
<nav class="navbar navbar-expand-sm bg-dark navbar-dark">
<div class="container-fluid">
<a class="navbar-brand" href="index.html"><img src="C:\Users\sahil\OneDrive - Graphic Era University\Desktop\hack\my own\images\5.png" style="width:40px;" class="rounded-pill"></a>
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" href="index.html">HOME</a>
</li>
<li class="nav-item">
<a class="nav-link" href=" mailto:[email protected]">CONTACT</a>
</li>
</ul>
</div>
</nav>
<div class="col-sm-4 bg-light container-fluid mt-5">
<div class="card" style="width:400px" >
<img class="card-img-top" src="C:\Users\sahil\OneDrive - Graphic Era University\Desktop\hack\my own\images\grid-img3.png" alt="Card image" style="height: 100px; width: 100px;">
<div class="card-body">
<h4 class="card-title">Admin</h4>
<p class="card-text">Check Patients and Doctors list</p>
</div>
</div>
</div>
<div class="mt-5 bg-light container-fluid col-sm-4">
<div class="mb-3 mt-3">
<label for="username" class="form-label">Username:</label>
<input type="username" class="form-control" id="username" placeholder="Enter username" name="username">
</div>
<div class="mb-3">
<label for="pwd" class="form-label">Password:</label>
<input type="password" class="form-control" id="pwd" placeholder="Enter password" name="pswd">
</div>
<div class="form-check mb-3">
<label class="form-check-label">
<input class="form-check-input" type="checkbox" name="remember"> Remember me
</label>
</div>
<a onclick="checka()" ><button type="submit" class="btn btn-primary" >Login</button></a>
<p class="bg-danger" id="errr"></p>
</div>
<section class="footer">
<div class="mt-5 p-4 bg-dark text-white text-center">
<i class="fab fa-twitter"></i>
<i class="fab fa-facebook"></i>
<a href="https://www.instagram.com/sahilll.saklani/" ><i class="fab fa-instagram"></i></a>
<p>© Copyright 2022 Redhat</p>
</div>
</section>
</body>
</html>