-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhospitallog.html
60 lines (49 loc) · 2.03 KB
/
hospitallog.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
<html>
<head>
<title>hospital login</title>
<script type="text/javascript">
</script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous">
</script>
<link rel="stylesheet" href="path/to/font-awesome/css/font-awesome.min.css">
<style>
#header{
background: url("https://media1.thehungryjpeg.com/thumbs/800_3639784_35cel3qtlex138d11c167kaekiemz7gczpi3n59k.jpg");
}
</style>
<style>
.display-4{
color: #FFFFFF;
}
</style>
</head>
<body>
<body class="bg">
<nav class="navbar bg-dark navbar-dark">
<div class="container">
<a href="/" class="navbar-brand"><b>HOME</b></a>
</div>
</nav>
<section id="header" class="jumbotron text-center">
<h2 class="display-4">LOGIN TO ACCESS PATREC-CHAIN</h2>
</section>
<form action='/admindash'>
<div class="container">
<div class="d-flex justify-content-center align-items-center container ">
<div class="form-group">
<label for="AID">ADMIN ID</label>
<input type="text" class="form-control" id="AID">
</div>
<div class="form-group">
<label for="pwd">PASSWORD</label>
<input type="password" class="form-control" id="pwd">
</div>
<div class="container">
<button type="submit" class="btn btn-primary">SUBMIT</button>
<button type="button" class="btn btn-info">RESET</button>
</div>
</form>
</body>
</html>