-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
42 lines (33 loc) · 1.04 KB
/
index.php
File metadata and controls
42 lines (33 loc) · 1.04 KB
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
<!--
COM231 - BANCO DE DADOS II
Atividade SQL Injection
Flávio Mota Gomes - 2018005379
Rafael Antunes Vieira - 2018000980
-->
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css" media="screen" />
</head>
<body>
<div class="title">SQL INJECTION in PostgreSQL</div>
<div class="login">
<img src="./Images/image1.jpg" alt="some text" width=400 height=200>
</div>
<div class="login">
<form method="post" action="login.php">
<label for "text"><br>Login:</label><br>
<input type="text" name="user" size="20" /><br>
<label for="password">Password:</label><br>
<input type="password" name="pass" size="20" /><br>
<button id="button" type="submit">Login</button>
</form>
</div>
<div class="header"><br>
COM231: Banco de Dados 2<br><br>
Flavio Mota Gomes -- 201800 <br>
Rafael Antunes Vieira -- 2018000980
<br><br>
</div>
</body>
</html>