Skip to content

Instantly share code, notes, and snippets.

@blogcacanid
Created October 16, 2020 13:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save blogcacanid/e0340ea9595f522d9a25f2c83f65c397 to your computer and use it in GitHub Desktop.
Save blogcacanid/e0340ea9595f522d9a25f2c83f65c397 to your computer and use it in GitHub Desktop.
home.php Login Dan Register System CodeIgniter 4 Views
<?= $this->extend('layouts/main') ?>
<?= $this->section('content') ?>
<section class="jumbotron text-center">
<h1>Welcome, <?= session()->name ?></h1>
<p>Untuk logout dari sistem silakan klik <a href="<?php echo base_url('logout');?>">Logout</a></p>
</section>
<?= $this->endSection() ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment