-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
31 lines (25 loc) · 755 Bytes
/
index.php
File metadata and controls
31 lines (25 loc) · 755 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>CALENDER</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<?php
//action tells to run that particular file
?>
<form action ="login.php" method="post">
<input type="text" name="uid" placeholder="Userid"><br>
<input type="password" name="pwd" placeholder="Password"><br><br>
<button>LOG IN</button>
</form>
<form action ="signup.php" method="post">
<input type="text" name="First_name" placeholder="First Name"><br>
<input type="text" name="Last_name" placeholder="Last Name"><br>
<input type="text" name="uid" placeholder="Userid"><br>
<input type="password" name="pwd" placeholder="Password"><br><br>
<button>SIGN UP</button>
</form>
</body>
</html>