File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 12
12
btnclass = btnclass ?? '' ;
13
13
return $ ( this ) . replaceWith (
14
14
$ ( '<div class="input-group mb-3"></div>' )
15
- . append ( $ ( '<input type="password" class="' + classlist + '" id="' + id + '" name="' + name + '" value="' + value + '"' + autofocus + '>' ) )
15
+ . append ( $ ( '<input type="password" class="' + classlist + '" id="' + id + '" name="' + name + '" placeholder="Password" value="' + value + '"' + autofocus + '>' ) )
16
16
. append ( '<span class="input-group-text" id="basic-addon1"><button type="button" class="' + btnclass + '" data-role="togglepassword" data-target="#' + id + '" title="' + title + '" tabindex="-1">' + content + '</button></span>' )
17
17
) ;
18
18
} ) ;
Original file line number Diff line number Diff line change 53
53
<div class="mb-3 text-center"><input class="form-control form-control-lg" type="text" name="username" placeholder="Username" value="<?php echo isset ($ _COOKIE ['username ' ]) ? $ _COOKIE ['username ' ] : '' ; ?> "></div>
54
54
<div class="mb-3 text-center"></div>
55
55
<div class="input-group mb-3">
56
- <input class="form-control" type="password" name="password" placeholder="Password" value="<?php echo isset ($ _COOKIE ['password ' ]) ? $ _COOKIE ['password ' ] : '' ; ?> ">
56
+ <input class="form-control form-control-lg " type="password" name="password" placeholder="Password" value="<?php echo isset ($ _COOKIE ['password ' ]) ? $ _COOKIE ['password ' ] : '' ; ?> ">
57
57
</div>
58
58
<div class="mb-3">
59
59
<input class="form-check-input" name="remember" type="checkbox" aria-label="remember" <?php echo isset ($ _COOKIE ['username ' ]) ? 'checked ' : '' ; ?> >
You can’t perform that action at this time.
0 commit comments