pict-rs-proxy/templates/uploads.rs.html

15 lines
357 B
HTML
Raw Normal View History

@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>
})