20 lines
		
	
	
		
			630 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			630 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
@use validator::ValidationErrors;
 | 
						|
@use crate::templates::base;
 | 
						|
@use crate::template_utils::*;
 | 
						|
@use crate::routes::blogs::NewBlogForm;
 | 
						|
@use crate::routes::*;
 | 
						|
 | 
						|
@(ctx: BaseContext, form: &NewBlogForm, errors: ValidationErrors)
 | 
						|
 | 
						|
@:base(ctx, i18n!(ctx.1, "New Blog"), {}, {}, {
 | 
						|
  <h1 dir="auto">@i18n!(ctx.1, "Create a blog")</h1>
 | 
						|
  <form method="post" action="@uri!(blogs::create)">
 | 
						|
      @(Input::new("title", i18n!(ctx.1, "Title"))
 | 
						|
      		.default(&form.title)
 | 
						|
      		.error(&errors)
 | 
						|
      		.set_prop("minlength", 1)
 | 
						|
      		.html(ctx.1))
 | 
						|
      <input type="submit" value="@i18n!(ctx.1, "Create blog")" dir="auto"/>
 | 
						|
  </form>
 | 
						|
})
 |