pict-rs-aggregator/templates/index.rs.html

26 lines
795 B
HTML

@use crate::{ui::ButtonKind, State};
@use super::{layout, text_area, text_input, button};
@(state: &State)
@:layout(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("title", Some("Title"), None)
@:text_area("description", Some("Description"), None)
</div>
<div class="content-group">
<div class="button-group">
@:button("Create Collection", ButtonKind::Submit)
</button>
</div>
</form>
</article>
</section>
})