diff options
| author | kj_sh604 | 2026-02-16 01:15:50 -0500 |
|---|---|---|
| committer | kj_sh604 | 2026-02-16 01:15:50 -0500 |
| commit | 94c6fdd12c8352f26df112f1c21592b020bb7c06 (patch) | |
| tree | bd5c54f18aadf6e2a803b6103a210769ce179a70 /templates/partials | |
feat: initial commit
Diffstat (limited to 'templates/partials')
| -rw-r--r-- | templates/partials/error.html | 4 | ||||
| -rw-r--r-- | templates/partials/result.html | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/templates/partials/error.html b/templates/partials/error.html new file mode 100644 index 0000000..83825f1 --- /dev/null +++ b/templates/partials/error.html @@ -0,0 +1,4 @@ +<article> + <h3>Conversion failed</h3> + <pre>{{ message }}</pre> +</article> diff --git a/templates/partials/result.html b/templates/partials/result.html new file mode 100644 index 0000000..427382d --- /dev/null +++ b/templates/partials/result.html @@ -0,0 +1,5 @@ +<article> + <h3>pdf ready</h3> + <p><strong>{{ filename }}</strong></p> + <a href="{{ download_url }}">download pdf</a> +</article> |
