39 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| @use templates::base;
 | |
| @use template_utils::*;
 | |
| @use routes::user::UpdateUserForm;
 | |
| @use validator::ValidationErrors;
 | |
| @use routes::*;
 | |
| 
 | |
| @(ctx: BaseContext, form: UpdateUserForm, errors: ValidationErrors)
 | |
| 
 | |
| @:base(ctx, i18n!(ctx.1, "Edit your account"), {}, {}, {
 | |
|     @if let Some(u) = ctx.2.clone() {
 | |
|         <h1>@i18n!(ctx.1, "Your Profile")</h1>
 | |
|         <p>
 | |
|             @i18n!(ctx.1, "To change your avatar, upload it in your gallery and select from there.")
 | |
|             <a href="@uri!(medias::new)">@i18n!(ctx.1, "Upload an avatar")</a>
 | |
|         </p>
 | |
|         <form method="post" action="@uri!(user::update: _name = u.username.clone())">
 | |
|             <!-- Rocket hack to use various HTTP methods -->
 | |
|             <input type=hidden name="_method" value="put">
 | |
| 
 | |
|             @input!(ctx.1, display_name (text), "Display name", form, errors.clone())
 | |
|             @input!(ctx.1, email (text), "Email", form, errors.clone())
 | |
|             <label for="summary">@i18n!(ctx.1, "Summary")</label>
 | |
|             <textarea id="summary" name="summary">@form.summary</textarea>
 | |
| 
 | |
|             <input type="submit" value="@i18n!(ctx.1, "Update account")"/>
 | |
|         </form>
 | |
| 
 | |
|         <h2>@i18n!(ctx.1, "Danger zone")</h2>
 | |
|         <p>@i18n!(ctx.1, "Be very careful, any action taken here can't be cancelled.")
 | |
|         @if !u.is_admin {
 | |
|             <form method="post" action="@uri!(user::delete: name = u.username)">
 | |
|                 <input type="submit" class="inline-block button destructive" value="@i18n!(ctx.1, "Delete your account")">
 | |
|             </form>
 | |
|         } else {
 | |
|             <p>@i18n!(ctx.1, "Sorry, but as an admin, you can't leave your own instance.")</p>
 | |
|         }
 | |
|     }
 | |
| })
 |