pict-rs-aggregator/templates/index.rs.html
2020-12-08 16:03:18 -06:00

24 lines
726 B
HTML

@use crate::{ui::ButtonKind, State};
@use super::{layout, text_area, text_input, button};
@(state: &State)
@:layout(state, "Aggregation", None, {}, {
<section>
<article>
<form method="POST" action="@state.create_aggregation_path()">
<div class="content-group">
<h3><legend>Create Aggregation</legend></h3>
</div>
<div class="content-group">
@:text_input("title", Some("Title"), None)
@:text_area("description", Some("Description"), None)
</div>
<div class="content-group">
@:button("Create Aggregation", ButtonKind::Submit)
</div>
</form>
</article>
</section>
})