diff options
author | Marcin Zelent <zelent.marcin@gmail.com> | 2018-05-30 16:53:50 +0200 |
---|---|---|
committer | Marcin Zelent <zelent.marcin@gmail.com> | 2018-05-30 16:53:50 +0200 |
commit | bf3c141f3c318b45b1f43d962623587ac26a92a2 (patch) | |
tree | 0972fb5aa6b4f1c4ae43331b106b3c4afaa63421 /sql-injection/index.html | |
parent | aceb07718aa45bb994e595fa23308bcb07d01c2b (diff) |
Added SQL injection example
Diffstat (limited to 'sql-injection/index.html')
-rw-r--r-- | sql-injection/index.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/sql-injection/index.html b/sql-injection/index.html new file mode 100644 index 0000000..d3e760b --- /dev/null +++ b/sql-injection/index.html @@ -0,0 +1,25 @@ +<!DOCTYPE HTML> +<html> + <head> + <title>Login page</title> + <meta charset="utf-8" /> +<style> +body { + text-align: center; +} + +input { + margin-bottom: 5px; +} + +</style> + </head> + <body> + <h1>Login</h1> + <form action="login.php" method="post"> + <input type="text" name="email" placeholder="E-mail"><br> + <input type="password" name="pass" placeholder="Password"><br> + <input type="submit" value="Log in"> + </form> + </body> +</html> |