-
Notifications
You must be signed in to change notification settings - Fork 0
/
patsignup.php
46 lines (43 loc) · 1.12 KB
/
patsignup.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
40
41
42
43
44
45
46
<?php
$con=mysqli_connect('localhost','root','');
mysqli_select_db($con,'hms');
$query= "SELECT * FROM pattable";
$query_run= mysqli_query($con, $query);
?>
<html>
<head>
<title>Patsign in</title>
<link rel="shortcut icon" type="image/x-icon" href="images/em.jpg" />
<link rel="stylesheet" href="loader.css">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<script src="https://kit.fontawesome.com/b379d3e204.js" crossorigin="anonymous"></script>
<style>
body
{
margin:0;
padding:0;
font-family:sans-serif;
background: linear-gradient(to left,#009FFD,#2A2A72);
background-attachment: fixed;
}
#welcome{
margin-top:200px;
}
.float-right{
color: #fff;
font-size: 15px;
text-decoration: none;
}
</style>
</head>
<body>
<div class="loader">
<img src="gif/loader.gif" alt="Loading...." />
</div>
<script src="load.js">
</script>
<a class="float-right" href="home.php"><h4><i class="fa fa-home" aria-hidden="true">HOME</i></h4></a>
<center><h1 id="welcome">WELCOME TO WE CARE HOSPITAL </h1>
</a></center>
</body>
</html>