1. Redesigned the web 2. Fixed logging in redirect issue 3. Added new route 4. Fixed sql issue on entry 5. Fixed typos
31 lines
1.0 KiB
HTML
31 lines
1.0 KiB
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 pseudo">
|
|
<i class="fa fa-check fa-fw"></i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</section>
|
|
</main>
|
|
{% endblock %}
|