deadjournal/views/admin/login.php
2025-01-08 22:46:44 +05:00

21 lines
457 B
PHP
Executable File

<h2>Abandon hope, all ye who enter here</h2>
<?php if (!empty($error)): ?>
<p style="color:red;"><?= e($error) ?></p>
<?php endif; ?>
<form method="post" action="">
<p>
<label>Login:</label><br>
<input type="text" name="username" required>
</p>
<p>
<label>Password:</label><br>
<input type="password" name="password" required>
</p>
<p>
<button type="submit">Enter</button>
</p>
</form>