- Fix nomenclature

This commit is contained in:
Andrzej Odwald 2023-12-17 17:27:16 +00:00
parent c75e20e58f
commit ee08f57abe
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>