pict-rs-aggregator/templates/index.rs.html
2023-01-29 13:51:04 -06:00

28 lines
768 B
HTML

@use crate::{ui::ButtonKind, State};
@use super::{layout_html, text_area_html, text_input_html, button_html};
@(state: &State)
@:layout_html(state, "Collection", None, {}, {
<section>
<article>
<form method="POST" action="@state.create_collection_path()">
<div class="content-group">
<h3>
<legend>Create Collection</legend>
</h3>
</div>
<div class="content-group">
@:text_input_html("title", Some("Title"), None, false)
@:text_area_html("description", Some("Description"), None, false)
</div>
<div class="content-group">
<div class="button-group">
@:button_html("Create Collection", ButtonKind::Submit)
</div>
</div>
</form>
</article>
</section>
})