12 lines
313 B
PHP
12 lines
313 B
PHP
<?php
|
|
// Joomla-style admin decoy
|
|
?><!DOCTYPE html>
|
|
<html><body>
|
|
<h1>Joomla! Administration Login</h1>
|
|
<form method="post" action="/login.php">
|
|
<input name="username" placeholder="Username">
|
|
<input name="password" type="password" placeholder="Password">
|
|
<button>Log in</button>
|
|
</form>
|
|
</body></html>
|