Log all user actions on stdout
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@ -28,8 +28,8 @@
|
||||
<label for="inputDevName" class="form-label mt-4">Device name</label>
|
||||
<input type="text" class="form-control" id="inputDevName"
|
||||
placeholder="Device / Authenticator app name"
|
||||
value="Authenticator app" minlength="1" required/>
|
||||
<small class="form-text text-muted">Please give a name to your device to identity it more easily
|
||||
value="Authenticator app" minlength="1" maxlength="{{ max_name_len }}" required/>
|
||||
<small class="form-text text-muted">Please give a name to your device to identify it more easily
|
||||
later.</small>
|
||||
<div class="invalid-feedback">Please give a name to this authenticator app</div>
|
||||
</div>
|
||||
|
@ -9,7 +9,7 @@
|
||||
<label for="inputKeyName" class="form-label mt-4">Key name</label>
|
||||
<input type="text" class="form-control" id="inputKeyName"
|
||||
placeholder="Device / Authenticator app name"
|
||||
value="Security key" minlength="1" required/>
|
||||
value="Security key" minlength="1" maxlength="{{ max_name_len }}" required/>
|
||||
<small class="form-text text-muted">Please give a name to your key to identify it more easily later.</small>
|
||||
<div class="invalid-feedback">Please give a name to this security key</div>
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user