-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
30 lines (25 loc) · 733 Bytes
/
Copy pathindex.php
File metadata and controls
30 lines (25 loc) · 733 Bytes
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
<?php
session_start();
set_include_path('/opt/lampp/lib/php');
require_once("./simple-php-captcha-master/simple-php-captcha.php");
$_SESSION['captcha'] = simple_php_captcha();
?>
<html>
<head>
<title>Login</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<?php
echo "<img src=".$_SESSION['captcha']['image_src'].">";
session_write_close();
?>
<form name="logueo" method="POST" action="usuari.php"> <br><br>
Captcha:<input type="text" name="captcha"><br><br>
Usuari:<input type="text" name="usuari"><br><br>
Contrasenya:<input type="text" name="contrasenya"><br><br>
<input type="submit" value="Entrar"><br>
</form>
</body>
</html>