19 lines
525 B
HTML
19 lines
525 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>convert to pdf</title>
|
|
|
|
</head>
|
|
<body>
|
|
<form method="post" enctype="multipart/form-data">
|
|
<label for="file">choose file<input type="file" name="file" id="file" accept=".pptx,.docx"></label>
|
|
<label for="file">Output type
|
|
<select name="output_format">
|
|
<option value="pdf">PDF</option>
|
|
</select>
|
|
</label>
|
|
<button type="submit">submit</button>
|
|
</form>
|
|
</body>
|
|
</html> |