Skip to content

Commit

Permalink
Use a label tag element for the remember me text (thedevdojo#4251)
Browse files Browse the repository at this point in the history
* Use a label tag element for the remember me text

Clicks on the remember me label also clicks on the associated checkbox

* Change url links to tinymce fonts

Change url links to tinymce fonts from "voyager-assets/?path=..." to "voyager-assets?path=...".
This modification removes mixed content errors and therefore the broken UI.

* Revert "Change url links to tinymce fonts"

This reverts commit 02028ae.
  • Loading branch information
apiaget authored and fletch3555 committed Jul 18, 2019
1 parent d648a08 commit 83b41a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/login.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@

<div class="form-group" id="rememberMeGroup">
<div class="controls">
<input type="checkbox" name="remember" value="1"><span class="remember-me-text">{{ __('voyager::generic.remember_me') }}</span>
<input type="checkbox" name="remember" id="remember" value="1"><label for="remember" class="remember-me-text">{{ __('voyager::generic.remember_me') }}</label>
</div>
</div>

Expand Down

0 comments on commit 83b41a6

Please sign in to comment.