-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhospitaluser.php
52 lines (44 loc) · 1.62 KB
/
hospitaluser.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="login.css" />
<title>Login Form</title>
</head>
<body>
<div class="login-wrapper">
<form action="hospital_card.php" class="form" method="POST">
<h2>Log in</h2>
<div class="input-group">
<input type="text" name="mobile" autocomplete="off" required />
<label>Phone Number</label>
</div>
<div class="input-group">
<input type="password" name="password" autocomplete="off" required />
<label>Password</label>
</div>
<input type="submit" value="login" name="login" class="submit-btn" />
<a href="#Use-Email" class="Use-Email">Use Email</a>
<a href="Donorform.php" class="Use-Email">Donors</a>
<a href="needy_registeration.php" class="Use-Email">Needy</a>
</form>
<div id="Use-Email">
<form action="hospital_card.php" class="form" method="POST">
<a href="#" class="close">×</a>
<h2>Log in</h2>
<div class="input-group">
<input type="email" name="email" autocomplete="off" required />
<label>Email Id </label>
</div>
<div class="input-group">
<input type="password" name="password" autocomplete="off" required />
<label>Password</label>
</div>
<input type="submit" value="login" value="login" class="submit-btn" />
</form>
</div>
</div>
</body>
</html>