<!DOCTYPE html>
<html>
<body>
<h2>Forms Test</h2>
<h3>Url Encoded </h3>
<form action="/handle_form" method="post">
<label for="fname">First name:</label><br>
<input type="text" id="fname" name="fname" value="John"><br>
<label for="lname">Last name:</label><br>
<input type="text" id="lname" name="lname" value="Doe"><br><br>
<input type="submit" value="Submit">
</form>
<h3>Multipart</h3>
<form action="/multipart_form" method="post" enctype="multipart/form-data">
<label for="fname">First name:</label><br>
<input type="text" id="fname" name="fname" value="John"><br>
<label for="lname">Last name:</label><br>
<input type="text" id="lname" name="lname" value="Doe"><br><br>
<input type="submit" value="Submit">
</form>
<h3>Multipart File</h3>
<form action="/multipart_form" method="post" enctype="multipart/form-data">
<label for="fname">First name:</label><br>
<input type="text" id="fname" name="fname" value="John"><br>
<label for="lname">Last name:</label><br>
<input type="text" id="lname" name="lname" value="Doe"><br><br>
<label for="cover_image">Cover Image</label><br>
<input type="file" id="cover_image" name="cover_image" accept=".jpg, .jpeg, .png"><br>
<input type="submit" value="Submit">
</form>
</body>
</html>