Skip to content

Commit

Permalink
Fix input-group on sendtoken (mail) page
Browse files Browse the repository at this point in the history
Moved the hidden token input outside the Bootstrap input-group to ensure the correct display of the border-radius at the end of the text input
  • Loading branch information
ludovi-com authored and David Coutadeur committed Jan 9, 2025
1 parent 7a7b13f commit 3046b36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/sendtoken.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
<div class="input-group">
<span class="input-group-text"><i class="fa fa-fw fa-user"></i></span>
<input type="text" name="login" id="login" value="{$login}" class="form-control" placeholder="{$msg_login}" autocomplete="off" />
<input type="hidden" name="formtoken" id="formtoken" value="{$formtoken}" />
</div>
<input type="hidden" name="formtoken" id="formtoken" value="{$formtoken}" />
</div>
</div>
{if !$mail_address_use_ldap}
Expand Down

0 comments on commit 3046b36

Please sign in to comment.