34 lines
1.2 KiB
HTML
34 lines
1.2 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Registrasi{% endblock %}
|
|
|
|
{% block body %}
|
|
<main class="documentation">
|
|
<section>
|
|
<h1>Registrasi</h1>
|
|
<form method="post">
|
|
<div class="flex four grow">
|
|
<div class="fourth-600 full">
|
|
<input type="text" name="full_name" value="" placeholder="Nama Lengkap" maxlength="50" autocomplete="off">
|
|
</div>
|
|
|
|
<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>
|
|
<input type="hidden" name="_method" value="post">
|
|
<input type="hidden" name="_token" value="{{ token }}">
|
|
<div class="fourth-600 none"></div>
|
|
<div>
|
|
<button type="submit" class="three-fourth-600 full">
|
|
<i class="fa fa-plus-circle fa-fw" aria-hidden="true"></i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</section>
|
|
</main>
|
|
{% endblock %}
|