Skip to content

Commit

Permalink
fix(html) : Removed size attributes on login inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
madzinah committed Oct 27, 2023
1 parent 04001e5 commit 6dbd1ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions includes/functions-html.php
Expand Up @@ -757,11 +757,11 @@ function yourls_login_screen( $error_msg = '' ) {
?>
<p>
<label for="username"><?php yourls_e( 'Username' ); ?></label><br />
<input type="text" id="username" name="username" size="30" class="text" autocomplete="username" />
<input type="text" id="username" name="username" class="text" autocomplete="username" />
</p>
<p>
<label for="password"><?php yourls_e( 'Password' ); ?></label><br />
<input type="password" id="password" name="password" size="30" class="text" />
<input type="password" id="password" name="password" class="text" />
</p>
<?php
yourls_do_action( 'login_form_bottom' );
Expand Down

0 comments on commit 6dbd1ed

Please sign in to comment.