26 lines
656 B
HTML
26 lines
656 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Masuk{% endblock %}
|
|
|
|
{% block body %}
|
|
<form method="post">
|
|
<h2>Login</h2>
|
|
|
|
<label for="username">Username: </label>
|
|
<input type="text" name="username" value="" placeholder="Tulis username" maxlength="25" autocomplete="off">
|
|
|
|
<br>
|
|
|
|
<label for="password">Password: </label>
|
|
<input type="password" name="password" value="" placeholder="Tulis password">
|
|
|
|
<input type="hidden" name="_method" value="put">
|
|
|
|
<input type="hidden" name="_token" value="{{ token }}">
|
|
|
|
<br>
|
|
|
|
<button type="submit">Masuk</button>
|
|
</form>
|
|
{% endblock %}
|