aboutsummaryrefslogtreecommitdiffstats
path: root/templates/partials
diff options
context:
space:
mode:
authorkj_sh6042026-02-16 01:15:50 -0500
committerkj_sh6042026-02-16 01:15:50 -0500
commit94c6fdd12c8352f26df112f1c21592b020bb7c06 (patch)
treebd5c54f18aadf6e2a803b6103a210769ce179a70 /templates/partials
feat: initial commit
Diffstat (limited to 'templates/partials')
-rw-r--r--templates/partials/error.html4
-rw-r--r--templates/partials/result.html5
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>