<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>This is a test</title> <link rel="stylesheet" href="/assets/css/test.css" > </head> <body> <h1> Test Test Test</h1> <p class="aaa"> Test Test asdasdsa Test</p> <div class="ccc"> <p class="aaa"> Inside aaaa </p> <p id="bbb"> Iside bbbb </p> </div> <form method="POST" action="/output" enctype="multipart/form-data"> <label for="inp1"> Bla-bla-bla </label> <input type="text" name="Cool input 1+" id="inp1" class="text-input" value="Ouuups"> <label for="inp2"> Goot got </label> <input type="text" name="Cool input 2 " id="inp2" class="text-input" value="Did it for you"> <hr> <label for="r-1-1">Boba</label> <input type="radio" id="r-1-1" name="r-1" value="First"> <label for="r-1-2">Biba</label> <input type="radio" id="r-1-2" name="r-1" value="Second"> <label for="r-2-1">Buba</label> <input type="radio" id="r-2-1" name="r-2" value="Third"> <label for="r-2-2">Duba</label> <input type="radio" id="r-2-2" name="r-2" value="Fourth"> <hr> <label for="chb1"> Check this </label> <input type="checkbox" name="Cool input 3" id="chb1" value="AAAVVVV1VVV"> <label for="chb2"> More checkbozsdfsdsess </label> <input type="checkbox" name="Cool input 4" id="chb2" value="___@@@222"> <label for="chb3"> Lmao i cbnat type stuff ia hva ee an insu=sslt </label> <input type="checkbox" name="Cool input 5" id="chb3" value="_down_TO"> <hr> <p> Lmao, get ready to handle file input:</p> <input type="file" name="BEBRA" id="tututu"> <hr> <input type="submit" value="SubmitButton"> </form> <p> Ok, ima try that again</p> <form method="post" action="/output" enctype="multipart/form-data"> <div> <label for="file">Choose a file</label> <input type="file" id="file" name="myFile" /> </div> <div> <button>Send the file</button> </div> </form> </body> </html>