Beautify the web

This commit is contained in:
2017-09-12 14:30:42 +07:00
parent 1f62a24c80
commit 5b1b546dc5
12 changed files with 6048 additions and 208 deletions

View File

@@ -3,28 +3,31 @@
{% block title %}Registrasi{% endblock %}
{% block body %}
<form method="post">
<h2>Registrasi</h2>
<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>
<label for="full_name">Nama Lengkap: </label>
<input type="text" name="full_name" value="" placeholder="Tulis nama anda" maxlength="50" autocomplete="off">
<br>
<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="post">
<input type="hidden" name="_token" value="{{ token }}">
<br>
<button type="submit">Registrasi</button>
</form>
<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 %}