Skip to content

Instantly share code, notes, and snippets.

View medanincode's full-sized avatar

Medan In Code medanincode

  • North Sumatera ,Earth
View GitHub Profile
@medanincode
medanincode / ResetPassword.php
Created May 16, 2021 14:42
Reset Password View untuk tutorial di https://medanincode.com
<?php
if(session()->getFlashData('error')){
?>
<div class="alert alert-danger alert-dismissible fade show" role="alert">
<?= session()->getFlashData('error') ?>
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<?php
@medanincode
medanincode / PasswordStrength.php
Created May 16, 2021 14:12
Password Strength Validation With Codeigniter 4
<?php
namespace App\Validation;
class PasswordStrength{
public $length = 10;
public $lengthCheck = false;
public $uppercaseCheck = false;
@medanincode
medanincode / corona.sql
Last active June 2, 2020 08:33
Corona Sql untuk tutorial di https://medanincode.com
--
-- Table structure for table `corona`
--
CREATE TABLE `corona` (
`id` int(11) NOT NULL,
`jumlah` int(11) NOT NULL,
`tgl` date NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;