-
Notifications
You must be signed in to change notification settings - Fork 1
/
login.php
67 lines (43 loc) · 1.3 KB
/
login.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?php include "header.php" ?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;" charset="utf-8">
<title>Login Page</title>
<link rel="stylesheet" type="text/css" href="login.css">
</head>
<body>
<div class="container">
<div class="signin">
<form action="login_db.php" method="post" accept-charset="utf-8" role="form">
<h2>Log in</h2>
<input type="text" name="email" placeholder="Email" class="uname">
<input type="password" name="password" placeholder="Password" class="pass">
<br><br>
<div class="rdo">
<label class="radio-inline">
<label>User    </label><input type="radio" name="log_type" value="user">
</label><br>
<label class="radio-inline">
<label>Doctor</label><input type="radio" name="log_type" value="doc">
</label>
</div>
<button type="submit" value="login" name="submit">Submit</button>
<br><br>
<div id="container">
<a href="#" style="text-decoration: none;">Forgot Password?</a>
</div>
<div class="no_account">Don't have account?</div>
<a href="signup.php" class="signup">Sign Up</a>
</form>
</div>
</div>
</body>
<style type="text/css">
.signin{
margin-bottom: 50px;
}
</style>
<?php include "footer.php" ?>
</html>