-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathforms.php
More file actions
28 lines (26 loc) · 702 Bytes
/
Copy pathforms.php
File metadata and controls
28 lines (26 loc) · 702 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Forms</title>
</head>
<body>
<?php include './header.php' ?>
<form method="POST" action="<?php echo htmlspecialchars($_SERVER['PHP_SELF']); ?>">
<input type="text" name="email" required/>
<input type="password" name="password" required/>
<input type="submit" />
</form>
<?php
if($_SERVER['REQUEST_METHOD'] == 'POST')
{
echo $_POST['email'];
}
?>
<?php
include './footers/copyrights.php'
?>
</body>
</html>