29 lines
948 B
HTML
29 lines
948 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Masuk{% endblock %}
|
|
|
|
{% block body %}
|
|
<main class="documentation">
|
|
<section>
|
|
<form method="post">
|
|
<h1>Login</h1>
|
|
|
|
<div class="flex four grow">
|
|
<div class="fourth-600 full">
|
|
<input type="text" name="username" value="" placeholder="Username" maxlength="25" autocomplete="off">
|
|
</div>
|
|
<div class="fourth-600 full">
|
|
<input type="password" name="password" value="" placeholder="Password">
|
|
</div>
|
|
<div class="fourth-600 none"></div>
|
|
<div class="fourth-600 none"></div>
|
|
<input type="hidden" name="_token" value="{{ token }}">
|
|
<div>
|
|
<button type="submit" class="half-600 full">Masuk</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</section>
|
|
</main>
|
|
{% endblock %}
|