Create Views

Navigate to my-project/app/views/index/index.phtml:

htmlCopy code<!DOCTYPE html>
<html>
<head>
    <title>Users List</title>
</head>
<body>
    <h1>Users List</h1>
    
    <ul>
        <?php foreach ($users as $user) { ?>
            <li><?= $user->username ?> - <?= $user->email ?></li>
        <?php } ?>
    </ul>
    
    <h2>Add New User</h2>
    <form action="<?= $this->url->get('index/add') ?>" method="post">
        <label>Username:</label><br>
        <input type="text" name="username" required><br><br>
        
        <label>Email:</label><br>
        <input type="email" name="email" required><br><br>
        
        <input type="submit" value="Add User">
    </form>
</body>
</html>

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *