pict-rs-proxy/templates/uploads.rs.html
Aode (Lion) 903134c7c7
All checks were successful
continuous-integration/drone/push Build is passing
Use pict-rs's background uploading feature
2022-05-02 20:38:46 -05:00

15 lines
357 B
HTML

@use super::{layout_html, return_home_html, statics::uploads_js};
@()
@:layout_html("Waiting for uploads...", None, {
<script src="@crate::statics(uploads_js.name)" type="text/javascript"></script>
}, {
<section>
<article>
<h3>Your images are being uploaded, please refresh in a few seconds...</h3>
</article>
@:return_home_html()
</section>
})