Skip to content
Snippets Groups Projects
Commit 3fa2c2d7 authored by Jaime Pérez Crespo's avatar Jaime Pérez Crespo
Browse files

Specify button as a submit button

Apparently, IE does not mark buttons as submit buttons when type is missing by default, making it impossible to submit a form.

This resolves #908.
parent 2748d2da
No related branches found
No related tags found
No related merge requests found
...@@ -168,7 +168,7 @@ if ($this->data['errorcode'] !== null) { ...@@ -168,7 +168,7 @@ if ($this->data['errorcode'] !== null) {
<tr id="submit"> <tr id="submit">
<td class="loginicon"></td><td></td> <td class="loginicon"></td><td></td>
<td> <td>
<button id="submit_button" class="btn" tabindex="6"> <button id="submit_button" class="btn" tabindex="6" type="submit">
<?php echo $this->t('{login:login_button}'); ?> <?php echo $this->t('{login:login_button}'); ?>
</button> </button>
</td> </td>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment