Merge pull request #735 from LethalsLoaded/adapt-nomenclature

Fix login screen nomenclature
This commit is contained in:
Pax1601 2023-12-20 16:30:44 +01:00 committed by GitHub
commit 2f37916595
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -985,7 +985,7 @@ nav.ol-panel> :last-child {
#login-status[data-status="failed"]::before {
color: var(--primary-red);
content: "Incorrect username/password!";
content: "Incorrect password!";
}
@keyframes blinker {

View File

@ -8,8 +8,8 @@
</div>
<form id="authentication-form">
<div><h5>Name</h5> <input type="text" id="username" name="username" required autocomplete="username" placeholder="Enter name..."></div>
<div><h5>Server password</h5> <input type="password" id="password" name="password" required autocomplete="current-password" placeholder="Enter server password..."></div>
<div><h5>Display Name</h5> <input type="text" id="username" name="username" required autocomplete="username" placeholder="Enter display name..."></div>
<div><h5>Password</h5> <input type="password" id="password" name="password" required autocomplete="current-password" placeholder="Enter game master/commander password..."></div>
<button type="submit" id="connection-button" class="ol-button-apply">Connect</button>
</form>