Implemented SQL injection attackable service
This commit is contained in:
23
static/store.html
Normal file
23
static/store.html
Normal 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>
|
||||
<section class="cats">
|
||||
{{#each books}}
|
||||
<article class="cat">
|
||||
<h3>{{this.name}}</h3>
|
||||
<img src="{{this.image_path}}" />
|
||||
<h4>Author: {{this.author}}</h4>
|
||||
</article>
|
||||
{{/each}}
|
||||
</section>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user