Move checkbox text before input

This commit is contained in:
2025-06-06 13:12:21 +01:00
parent 3d7d1609f3
commit ecdac3fc9a
6 changed files with 37 additions and 26 deletions

View File

@@ -38,29 +38,29 @@ const Security = () => {
<div className="security-item">
<h2>Métodos de Autorização</h2>
<div className="auth-methods">
<label>
<label className="checkbox-label">
RFID
<input
type="checkbox"
checked={authMethods.RFID}
onChange={() => handleAuthMethodChange('RFID')}
/>
RFID
</label>
<label>
<label className="checkbox-label">
Aplicativo
<input
type="checkbox"
checked={authMethods.App}
onChange={() => handleAuthMethodChange('App')}
/>
Aplicativo
</label>
<label>
<label className="checkbox-label">
Senha
<input
type="checkbox"
checked={authMethods.Password}
onChange={() => handleAuthMethodChange('Password')}
/>
Senha
</label>
</div>
</div>