File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ export default (data) => {
49
49
</ fieldset >
50
50
51
51
< div class ="buttons ">
52
- < button data-button-type ="info " type ="submit "> Запази промените</ button >
52
+ < button data-button-type ="success " type ="submit "> Запази промените</ button >
53
53
< a role ="button " data-button-type ="danger " href ="${ prev } "> Отказ</ a >
54
54
</ div >
55
55
</ fieldset >
Original file line number Diff line number Diff line change @@ -15,13 +15,13 @@ export default (onSubmit, togglePasswordVisibility) => html`
15
15
16
16
< div class ="field ">
17
17
< label for ="user__username "> Потребителско име: < span class ='required '> *</ span > </ label >
18
- < input name ="username " id ="user__username " type ="text " placeholder ="Въведи потребителско име... " required @invalid ="${ ( { target } ) => target . setCustomValidity ( 'Полето е задължително!' ) } " @input ="${ ( { target } ) => target . setCustomValidity ( '' ) } " />
18
+ < input name ="username " id ="user__username " type ="text " placeholder ="Въведи потребителско име... " autocomplete =" username " required @invalid ="${ ( { target } ) => target . setCustomValidity ( 'Полето е задължително!' ) } " @input ="${ ( { target } ) => target . setCustomValidity ( '' ) } " />
19
19
</ div >
20
20
21
21
< div class ="field ">
22
22
< label for ="user__password "> Парола: < span class ='required '> *</ span > </ label >
23
23
< div class ="password-field ">
24
- < input name ="password " id ="user__password " type ="password " placeholder ="Въведи парола... " required @invalid ="${ ( { target } ) => target . setCustomValidity ( 'Полето е задължително!' ) } " @input ="${ ( { target } ) => target . setCustomValidity ( '' ) } " />
24
+ < input name ="password " id ="user__password " type ="password " placeholder ="Въведи парола... " autocomplete =" current-password " required @invalid ="${ ( { target } ) => target . setCustomValidity ( 'Полето е задължително!' ) } " @input ="${ ( { target } ) => target . setCustomValidity ( '' ) } "/>
25
25
< i class ="material-icons eye-icon " @click =${ togglePasswordVisibility } > visibility_off</ i >
26
26
</ div >
27
27
</ div >
@@ -31,7 +31,7 @@ export default (onSubmit, togglePasswordVisibility) => html`
31
31
</ div >
32
32
33
33
< div class ="form-link ">
34
- < span > Все още нямаш профил? < a href ="${ page . base ( ) } /user/register "> Регистрация </ a > </ span >
34
+ < span > Все още нямаш профил? < a href ="${ page . base ( ) } /user/register "> Регистрирай се </ a > </ span >
35
35
</ div >
36
36
</ fieldset >
37
37
</ form >
You can’t perform that action at this time.
0 commit comments