Change: replace inputs of type submit with button elements
Attributes 'type="submit"' got removed because it's the default type. Therefore the attribute can be omitted.
This commit is contained in:
parent
b13bfd52bb
commit
f9d6025a75
9 changed files with 10 additions and 10 deletions
|
|
@ -63,7 +63,7 @@ $c['main'] = '
|
|||
<input class="userdata" id="password" type="password" name="password" />
|
||||
<input style="display: none;" name="username" type="text" value="do-not-change" /></p>
|
||||
<p><input type="hidden" name="url" value="' . htmlspecialchars(!empty($get['url']) ? $get['url'] : '') . '" />
|
||||
<input type="submit" value="' . $l['admin']['login_send'] . '" /></p>
|
||||
<button value="' . $l['admin']['login_send'] . '">' . htmlspecialchars($l['admin']['login_send']) . '</button></p>
|
||||
</form>
|
||||
';
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue