Skip to content
Snippets Groups Projects
Commit 9655cd52 authored by Alexander Jason's avatar Alexander Jason
Browse files

feat: add subscription route

parent 2efafbb0
No related merge requests found
......@@ -15,6 +15,13 @@ class UserController extends Controller implements ControllerInterface
$notFoundView->render();
}
//insert data
public function subs()
{
$mySubscriptionView = $this->view('user', 'MySubscriptionView');
$mySubscriptionView->render();
}
public function login()
{
if (isset($_SESSION['username'])) {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment