Change API Key user login to type password

This commit is contained in:
Christopher Cookman 2024-12-26 11:37:24 -07:00
parent fe70d0aba3
commit 95c94b0e6d

View file

@ -18,7 +18,7 @@
<form action="/user/login" method="POST">
<div class="mb-3">
<label for="apiKey" class="form-label">API Key:</label>
<input type="text" class="form-control" id="apiKey" name="apiKey" required>
<input type="password" class="form-control" id="apiKey" name="apiKey" required>
</div>
<button type="submit" class="btn btn-primary w-100">Login</button>
</form>