This commit is contained in:
2025-06-23 09:58:45 +02:00
parent 97137da6b9
commit 9a4626e854
3 changed files with 26 additions and 13 deletions

View File

@@ -13,10 +13,15 @@
<input type="password" id="password" name="password" required>
</div>
<div class="form-actions">
<button type="submit" href="?controller=User&do=loginUser">Login</button>
<button type="submit">Login</button>
<label><?php if (isset($errmsg)):?>
<?php echo $errmsg;?>
<?php endif; ?>
</label>
<p style="margin-top:15px; text-align:center;">Don't have an account? <a href="index.php?page=register">Register here</a></p>
</div>
</div>
<input type="hidden" name="controller" value="User">
<input type="hidden" name="do" value="loginUser">
</form>
</div>
<?php include dirname(__DIR__).'/footer.phtml'; ?>