-
Notifications
You must be signed in to change notification settings - Fork 4
/
tryout.html
32 lines (28 loc) · 1.01 KB
/
tryout.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<title>Try WeasyPrint-REST</title>
</head>
<body>
<form action="http://localhost:5000/api/v1.0/print" method="post" enctype="multipart/form-data">
<label for="html">HTML File:</label><br>
<input type="file" id="html" name="html"><br>
<label for="style">CSS Files:</label><br>
<input type="file" id="style" name="style[]" multiple><br>
<label for="asset">Asset Files:</label><br>
<input type="file" id="asset" name="asset[]" multiple><br>
<label for="template">Template:</label><br>
<select name="template" id="template">
<option value="">None</option>
<option value="report">report</option>
</select><br>
<label for="disposition">Open Mode:</label><br>
<select name="disposition" id="disposition">
<option value="inline">Open</option>
<option value="attachment">Download</option>
</select>
<hr>
<input type="submit" value="Submit">
</form>
</body>
</html>