CSY2028-assignment-2/templates/login.html.php

15 lines
381 B
PHP
Raw Normal View History

2023-01-23 18:34:00 +00:00
<main class="home">
<h2>Log in</h2>
2023-01-25 15:37:56 +00:00
<form action="/user/login" method="post" style="padding: 40px">
2023-01-23 18:34:00 +00:00
<label>Enter Username</label>
<input type="username" name="username" />
<label>Enter Password</label>
<input type="password" name="password" />
2023-02-05 12:30:28 +00:00
<input type="submit" name="submit"/>
2023-01-23 18:34:00 +00:00
</form>
2023-01-23 18:45:00 +00:00
</main>
<p><?=nl2br($response)?></p>