15 lines
381 B
PHP
15 lines
381 B
PHP
<main class="home">
|
|
<h2>Log in</h2>
|
|
|
|
<form action="/user/login" method="post" style="padding: 40px">
|
|
<label>Enter Username</label>
|
|
<input type="username" name="username" />
|
|
|
|
<label>Enter Password</label>
|
|
<input type="password" name="password" />
|
|
|
|
<input type="submit" name="submit"/>
|
|
</form>
|
|
</main>
|
|
<p><?=nl2br($response)?></p>
|