diff options
Diffstat (limited to 'src/main/resources/templates/views/settings_main.html')
-rw-r--r-- | src/main/resources/templates/views/settings_main.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/main/resources/templates/views/settings_main.html b/src/main/resources/templates/views/settings_main.html index a0315244..c819177e 100644 --- a/src/main/resources/templates/views/settings_main.html +++ b/src/main/resources/templates/views/settings_main.html @@ -5,7 +5,7 @@ {%if not visitor.verified %} <h2 style="color: red; padding: 20px;">Verify your account by adding email or social account</h2> {% endif %} - <form action="/settings" method="POST" enctype="multipart/form-data"> + <form action="/settings" method="POST"> <input type="hidden" name="{{_csrf.parameterName}}" value="{{_csrf.token}}" /> <fieldset> <legend>Notification options</legend> @@ -35,7 +35,7 @@ {% endif %} </fieldset> {% if jids | length > 0 %} - <form action="/settings" method="POST" enctype="multipart/form-data"> + <form action="/settings" method="POST"> <input type="hidden" name="{{_csrf.parameterName}}" value="{{_csrf.token}}" /> <fieldset> <legend style="background: url(//static.juick.com/settings/xmpp.png) no-repeat; padding-left: 58px; line-height: 48px;"> @@ -65,7 +65,7 @@ <legend style="background: url(//static.juick.com/settings/email.png) no-repeat; padding-left: 58px; line-height: 48px;"> E-mail </legend> - <form action="/settings" method="POST" enctype="multipart/form-data"> + <form action="/settings" method="POST"> <input type="hidden" name="{{_csrf.parameterName}}" value="{{_csrf.token}}" /> <p>Add account:<br/> <input type="text" name="account"/> @@ -73,7 +73,7 @@ <input type="submit" value=" Add " class="Button" /> </p> </form> - <form action="/settings" method="POST" enctype="multipart/form-data"> + <form action="/settings" method="POST"> <input type="hidden" name="{{_csrf.parameterName}}" value="{{_csrf.token}}" /> <p>Your accounts:</p> <p> @@ -91,7 +91,7 @@ </form> {% if emails is not empty %} <!--email_off--> - <form action="/settings" method="POST" enctype="multipart/form-data"> + <form action="/settings" method="POST"> <input type="hidden" name="{{_csrf.parameterName}}" value="{{_csrf.token}}" /> <p>You can receive notifications to email:<br/> Sent to <select name="account"> |