-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
38 lines (29 loc) · 1.48 KB
/
Copy pathindex.php
File metadata and controls
38 lines (29 loc) · 1.48 KB
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
<?php include('./layouts/header.php') ?>
<div class="container-fluid">
<div class="d-flex justify-content-center">
<div class="container">
<p class="text-success display-4 text-center">Patient Data Archiving System (PDAS)</p>
<p class="text-info h4 text-center mt-5 ">Login to your Account</p>
<div class="row justify-content-center">
<div class="col-md-6">
<form action="search.php">
<div class="form-group">
<label for="email" class="text-">Username:</label>
<input type="text" class="form-control" id="email" aria-describedby="emailHelp">
</div>
<div class="form-group">
<label for="password" class="text-">Password:</label>
<input type="password" class="form-control" id="password">
</div>
<div class="form-group form-check">
<input type="checkbox" class="form-check-input" id="exampleCheck1">
<label class="form-check-label" for="exampleCheck1">Remember me</label>
</div>
<button type="submit" class="btn btn-outline-secondary">Login</button>
</form>
</div>
</div>
</div>
</div>
</div>
<?php include('./layouts/footer.php') ?>