-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathHome.php
43 lines (41 loc) · 2.48 KB
/
Home.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
<html>
<body style="background-image: url(Images/stethoscope.jpg);">
<link rel="stylesheet" href="main.css">
<div class="header">
<ul>
<li style="float: left; border-right: none;"> <a href="Home.php" class="logo"> <img src="Images/Pic9.png" width="70px" height="60px"> <strong> WeCare </strong> Online Apppointment System </a> </li>
</ul>
</div>
<div class="centre">
<h2 style="text-align:left;"> Welcome!!!</h2><br>
<p style="text-align:left;font-size:40px; font-family: cursive; color: black;position: absolute; top: 30%;">Consult Now </p><br>
<button onclick="document.getElementById('id01').style.display='block'" style="position: absolute;top: 60%;left:5%;">LOGIN</button>
<button onclick="window.location.href='signup.php'" style="position: absolute;top: 70%;left:5%;">SIGNUP</button>
</div>
<div class="footer">
<ul style="position: absolute;top:90%;background-color:black;">
<li> <a href="adminlogin.php">Admin Login </a> </li>
</ul>
</div>
<div id="id01" class="modal" >
<form class="modal-content animate" method="POST" action="InsertLogin.php">
<div class="imgcontainer">
<span style="float:left";><h2>Log In</h2></span>
<span onclick="document.getElementById('id01').style.display='none'" class="close" title="Close Modal">×</span>
</div>
<div class="container">
<label style="color: black;font-family: cursive;position: absolute;top: 35%;" ><b>Username:</b></label>
<input type="text" placeholder="Enter your Username" name="username" required >
<label style="color: black; font-family: cursive;" ><b>Password:</b></label>
<input type="password" placeholder="Enter your Password" name="psw" required>
<button type="submit" name="login">LOGIN</button>
<input type="checkbox" checked="checked"><label style="font-family: cursive;color: black;"><b>Remember my login</b></label>
</div>
<div class="container" style="background-color:white">
<button type="button" onclick="document.getElementById('id01').style.display='none'" class="cancelbtn">Cancel</button>
<button type="submit" onclick="window.location.href='Signup.php'" name="signup" style="float: left">Sign Up</button>
</div>
</form>
</div>
</body>
</html>