-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathManagement.php
53 lines (43 loc) · 1.21 KB
/
Management.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
<?php
echo "1'or'1'='1";
$title = "REG OR LOGIN";
$content = '
<!DOCTYPE HTML>
<html lang="en-US">
<head>
</head>
<body>
<center><h2><u>PROJECT ON : SQL INJECTION </u></h2></center>
<center><h3>Supervised By : Narayan Ranjan Chakraborty</h3></center>
<br>
<center>
<form method="post" action="login_submit.php">
<h2>Login Form</h2>
<br>
<br>
<input type="email" name="e" placeholder="Enter Your Email"/><br><br>
<input type="password" name="p" placeholder="Enter Your Password" /><br><br><br>
<input type="submit" name="login" value="Submit"/>
</form>
</center>
<br>
<br>
<br>
<center>
<form method="post" enctype="multipart/form-data" action="regis_submit.php">
<h2>Registration Form</h2>
<br>
<br>
<input type="text" name="n" placeholder="Enter Your name"/><br><br>
<input type="email" name="e" placeholder="Enter Your Email" /><br><br>
<input type="integer" name="nm" placeholder="Enter Your Number"/><br><br>
<input type="password" name="p" placeholder="Enter Your Password"/><br><br>
<input type="submit" name="submit" value="Submit"/>
</form>
</center>
<br>
<br>
</body>
</html>';
include 'Template.php';
?>