add comment
This commit is contained in:
parent
53fe6c3220
commit
b75805d822
|
@ -131,6 +131,10 @@ class="filter-info border px-2 py-1 rounded text-sm">
|
||||||
spanGaps: true,
|
spanGaps: true,
|
||||||
scales: {
|
scales: {
|
||||||
y: {
|
y: {
|
||||||
|
// alasan menggunakan logarithmic: untuk menghindari nilai yang terlalu besar atau kecil yang bisa membuat grafik sulit dibaca
|
||||||
|
// jika tidak ingin menggunakan logarithmic, bisa dihapus atau diganti dengan type: 'linear',
|
||||||
|
// jika ingin tetap menggunakan logarithmic, pastikan data tidak mengandung nilai nol atau negatif
|
||||||
|
// jika ada nilai nol atau negatif, bisa menggunakan filter untuk menghapusnya sebelum membuat grafik
|
||||||
type: 'logarithmic',
|
type: 'logarithmic',
|
||||||
beginAtZero: true,
|
beginAtZero: true,
|
||||||
ticks: {
|
ticks: {
|
||||||
|
|
|
@ -18,12 +18,13 @@
|
||||||
</div>
|
</div>
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
<form method="POST" action="{{ route('login') }}">
|
<form method="POST" action="{{ route('login') }}" autocomplete="off">
|
||||||
@csrf
|
@csrf
|
||||||
<div class="mb-4">
|
<div class="mb-4">
|
||||||
<input
|
<input
|
||||||
type="email"
|
type="email"
|
||||||
name="email"
|
name="email"
|
||||||
|
autocomplete="off"
|
||||||
class="w-full px-4 py-2 bg-gray-600 text-white rounded focus:outline-none"
|
class="w-full px-4 py-2 bg-gray-600 text-white rounded focus:outline-none"
|
||||||
placeholder="Email"
|
placeholder="Email"
|
||||||
required
|
required
|
||||||
|
@ -34,14 +35,15 @@ class="w-full px-4 py-2 bg-gray-600 text-white rounded focus:outline-none"
|
||||||
<input
|
<input
|
||||||
type="password"
|
type="password"
|
||||||
name="password"
|
name="password"
|
||||||
|
autocomplete="new-password"
|
||||||
class="w-full px-4 py-2 bg-gray-600 text-white rounded focus:outline-none"
|
class="w-full px-4 py-2 bg-gray-600 text-white rounded focus:outline-none"
|
||||||
placeholder="Password"
|
placeholder="Password"
|
||||||
required>
|
required>
|
||||||
<div class="text-right mt-1">Lupa Password?
|
<div class="text-right mt-1">Lupa Password?
|
||||||
<a href="{{ route('password.request') }}" class="text-white underline hover:text-gray-200 text-sm">
|
<a href="{{ route('password.request') }}" class="text-white underline hover:text-gray-200 text-sm">
|
||||||
Reset
|
Reset
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
|
|
|
@ -22,22 +22,22 @@
|
||||||
</div>
|
</div>
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
<form method="POST" action="{{ url('/register') }}">
|
<form method="POST" action="{{ url('/register') }}" autocomplete="off">
|
||||||
@csrf
|
@csrf
|
||||||
<div class="mb-4">
|
<div class="mb-4">
|
||||||
<input type="text" name="name" class="w-full px-4 py-2 bg-gray-600 text-white rounded focus:outline-none" placeholder="Nama" required>
|
<input type="text" name="name" autocomplete="off" class="w-full px-4 py-2 bg-gray-600 text-white rounded focus:outline-none" placeholder="Nama" required>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="mb-4">
|
<div class="mb-4">
|
||||||
<input type="email" name="email" class="w-full px-4 py-2 bg-gray-600 text-white rounded focus:outline-none" placeholder="Email" required>
|
<input type="email" name="email" autocomplete="off" class="w-full px-4 py-2 bg-gray-600 text-white rounded focus:outline-none" placeholder="Email" required>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="mb-4">
|
<div class="mb-4">
|
||||||
<input type="password" name="password" class="w-full px-4 py-2 bg-gray-600 text-white rounded focus:outline-none" placeholder="Password" required>
|
<input type="password" name="password" autocomplete="new-password" class="w-full px-4 py-2 bg-gray-600 text-white rounded focus:outline-none" placeholder="Password" required>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="mb-4">
|
<div class="mb-4">
|
||||||
<input type="password" name="password_confirmation" class="w-full px-4 py-2 bg-gray-600 text-white rounded focus:outline-none" placeholder="Konfirmasi Password" required>
|
<input type="password" name="password_confirmation" autocomplete="new-password" class="w-full px-4 py-2 bg-gray-600 text-white rounded focus:outline-none" placeholder="Konfirmasi Password" required>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="mb-4">
|
<div class="mb-4">
|
||||||
|
@ -56,7 +56,6 @@
|
||||||
<div class="text-right mt-1">Kembali ke
|
<div class="text-right mt-1">Kembali ke
|
||||||
<a href="{{ route('login') }}" class="text-white underline">login</a>
|
<a href="{{ route('login') }}" class="text-white underline">login</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
Loading…
Reference in New Issue