Skip to content

Commit

Permalink
moving code to src
Browse files Browse the repository at this point in the history
  • Loading branch information
niden committed Jan 14, 2024
1 parent 987db91 commit 6101d21
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 4 deletions.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion app/models/Users.php → src/models/Users.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

class Users extends Model
{
public $email;
public $id;
public $name;
public $email;
}
5 changes: 3 additions & 2 deletions app/views/index.phtml → src/views/index.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@
<head>
<meta charset="UTF-8">
<title>Phalcon Tutorial</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<link rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<?php echo $this->getContent(); ?>
</div>
</body>
</html>
</html>
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,3 @@
</p>

<?php echo $this->tag->close('form'); ?>

File renamed without changes.

0 comments on commit 6101d21

Please sign in to comment.