-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
28 lines (27 loc) · 950 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset = "UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Practitioner Login</title>
<link href="CSS/login.css" rel="stylesheet" type="text/css">
</head>
<center>
<h1> Medication and Diet Regime Management System </h1>
<body bgcolor="#E7FBFC">
<h2>
Login
</h2>
<!-- Login form -->
<form action="login.php" method="POST">
<div class="container">
<label><b>Email</b></label>
<input type="text" placeholder="Enter Email" name="email" id="email" required/>
<label><b>Password</b></label>
<input type="password" placeholder="Enter Password" name="password" id="password" required/>
<button type="submit" name="submit" id="submit">Login</button>
</div>
</form>
</body>
</center>
</html>