mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-22 11:31:01 +00:00
Fix that bug :D
This commit is contained in:
parent
b4882533f8
commit
028c4fdbc6
1 changed files with 2 additions and 2 deletions
|
@ -18,11 +18,11 @@
|
||||||
<!-- Rocket hack to use various HTTP methods -->
|
<!-- Rocket hack to use various HTTP methods -->
|
||||||
<input type=hidden name="_method" value="put">
|
<input type=hidden name="_method" value="put">
|
||||||
|
|
||||||
@(Input::new("display_name", i18n!(ctx.1, ""))
|
@(Input::new("display_name", i18n!(ctx.1, "Display name"))
|
||||||
.default(&form.display_name)
|
.default(&form.display_name)
|
||||||
.error(&errors)
|
.error(&errors)
|
||||||
.html(ctx.1))
|
.html(ctx.1))
|
||||||
@(Input::new("email", i18n!(ctx.1, ""))
|
@(Input::new("email", i18n!(ctx.1, "Email"))
|
||||||
.default(&form.email)
|
.default(&form.email)
|
||||||
.error(&errors)
|
.error(&errors)
|
||||||
.input_type("email")
|
.input_type("email")
|
||||||
|
|
Loading…
Reference in a new issue