18 lines
589 B
HTML
18 lines
589 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>My fucking random form</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<form action="/form" method="POST" enctype="multipart/form-data">
|
||
|
<input type="file" name="somejim">
|
||
|
<input type="text" name="name">
|
||
|
<input type="password" name="password">
|
||
|
<input type="hidden" name="bloke" value="Demi Lovato">
|
||
|
<input type="submit" value="OK">
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|