-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
44 lines (35 loc) · 816 Bytes
/
index.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
<?php
include("includes/header.php");
?>
<div class="row">
<div class="background">
<link rel="stylesheet" type="text/css" href="style/css/style1.css">
<div class="login-box" style="margin-top:23px">
<img src="img/patient.png" class="avatar">
<h1>Employee Login</h1>
<form method="post" action="process\process_user_login.php">
<p>Email ID</p>
<input type="text" name="name" placeholder="Enter Email ID" >
<p>Password</p>
<input type="password" name="pass" placeholder="Enter Password">
<input type="submit" name="submit" value="Login" >
<div class="center"><a href="signup.php">Sign Up</a></div>
</form>
</div>
</div>
</div>
<style>
body {
background-image: url(img/1.jpg);
}
.center{
color: #2979ff;
font-size: 14px;
}
.background{
opacity: 2;
}
</style>
<?php
include("includes/footer.php");
?>