lepisi-pengumuman/App/Views/Access/login.html

26 lines
658 B
HTML

{% extends "base.html" %}
{% block title %}Login{% endblock %}
{% block body %}
<form method="post">
<h2>Login</h2>
<label for="username">Username: </label>
<input type="text" name="username" value="" placeholder="Type your username" maxlength="25">
<br>
<label for="password">Password: </label>
<input type="password" name="password" value="" placeholder="Type your password">
<input type="hidden" name="_method" value="put">
<input type="hidden" name="_token" value="{{ token }}">
<br>
<button type="submit" name="login">Login</button>
</form>
{% endblock %}