VENOM-2: Fixed Login, fixed missing scripts.min.js,

This commit is contained in:
Maurice Grönwoldt 2020-10-05 20:38:36 +02:00
commit 0baed1a7fc
8 changed files with 38 additions and 16 deletions

View file

@ -1,15 +1,16 @@
<main>
<div>
<p>- Admin Login -<br>Be Carefully!</p>
<form id="login" novalidate method="POST" action="/admin/api/login">
<p class="error-message hide">Login Failed</p>
<input type="hidden" name="REDIRECT_TO" value="NO">
<div class="input-group">
<input id="username" required>
<label for="name">Username</label>
<input id="username" name="USERNAME" required>
<label for="username">Username</label>
<span class="error">Username is required</span>
</div>
<div class="input-group">
<input id="password" required type="password">
<input id="password" required name="PASSWORD" type="password">
<label for="password">Password</label>
<span class="error">Password is required</span>
</div>