2018-12-06 17:54:16 +00:00
|
|
|
@use validator::ValidationErrors;
|
|
|
|
@use templates::base;
|
|
|
|
@use template_utils::*;
|
|
|
|
@use routes::blogs::NewBlogForm;
|
2018-12-07 11:05:01 +00:00
|
|
|
@use routes::*;
|
2018-12-06 17:54:16 +00:00
|
|
|
|
|
|
|
@(ctx: BaseContext, form: &NewBlogForm, errors: ValidationErrors)
|
|
|
|
|
2019-02-02 14:23:50 +00:00
|
|
|
@:base(ctx, i18n!(ctx.1, "New Blog"), {}, {}, {
|
2018-12-06 17:54:16 +00:00
|
|
|
<h1>@i18n!(ctx.1, "Create a blog")</h1>
|
2018-12-07 11:05:01 +00:00
|
|
|
<form method="post" action="@uri!(blogs::create)">
|
2018-12-06 17:54:16 +00:00
|
|
|
@input!(ctx.1, title (text), "Title", form, errors, "required minlength=\"1\"")
|
|
|
|
<input type="submit" value="@i18n!(ctx.1, "Create blog")"/>
|
|
|
|
</form>
|
|
|
|
})
|