Implemented SQL injection attackable service

This commit is contained in:
2023-04-20 23:17:34 +02:00
parent c234ec6806
commit aa8d4f4036
10 changed files with 213 additions and 2 deletions

23
static/index.html Normal file
View File

@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>{{project_name}}</title>
<link rel="stylesheet" href="static/css/index.css" type="text/css">
</head>
<body>
<h1>{{project_name}}</h1>
<form method="post" a>
<label for="username">Username: </label>
<input type="text" name="username" required>
<br>
<label for="password">Password: </label>
<input type="text" name="password" required>
<br>
<input type="submit" value="login">
</form>
</body>
</html>