-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Manoj Pandit / Intern
committed
Mar 12, 2022
1 parent
0f81d12
commit 5216e66
Showing
105 changed files
with
74,438 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
{ | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?php | ||
|
||
class add{ | ||
public function admin() | ||
{ | ||
include "./view/haeder.php"; | ||
include './model/adminview.php'; | ||
} | ||
public function admindelet() | ||
{ | ||
include './model/admindelet.php'; | ||
|
||
} | ||
} | ||
$obj2= new add(); | ||
|
||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
|
||
|
||
|
||
<?php $page='index'; $phpcode=''; | ||
$admin='';include './controller/model.php'; | ||
|
||
if(isset($_GET['page'])){ | ||
$page=$_GET['page']; $obj->$page();} | ||
else { | ||
if(isset($_GET['phpcode'])){ | ||
$phpcode=$_GET['phpcode']; | ||
include './model/php.php'; | ||
$code->$phpcode(); | ||
} | ||
else | ||
{ $obj->$page(); | ||
// include './controller/admincontroller.php'; $obj2->$admin(); | ||
} | ||
|
||
} | ||
|
||
|
||
|
||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
<?php | ||
|
||
class fun{ | ||
|
||
public function index(){ | ||
require_once "./view/haeder.php"; | ||
require_once './view/container.php'; | ||
include './view/footer.php'; | ||
} | ||
public function home(){ | ||
require_once './view/haeder.php'; | ||
include "./view/ragistration.php"; | ||
include "./view/footer.php"; | ||
} public function login(){ | ||
|
||
require_once './view/haeder.php'; | ||
if(!isset($_SESSION['username'])){ | ||
|
||
require_once './view/login.php';} | ||
else { include './view/container.php';} | ||
include "./view/footer.php"; | ||
|
||
} public function view(){ | ||
include './view/loginv.php'; | ||
include './view/view.php'; | ||
include "./view/footer.php"; | ||
} public function logout(){ | ||
include "./model/logout.php"; | ||
} public function edit(){ | ||
include './view/edit.php'; | ||
} | ||
// public function editupdate(){ | ||
// include "./model/editupdate.php"; | ||
// } | ||
public function submit(){ | ||
include './model/phprag.php'; | ||
|
||
} | ||
// public function phplogin(){ | ||
|
||
// include './model/phplogin.php'; | ||
// } | ||
|
||
public function forphp() | ||
{ | ||
include './model/reset_password.php'; | ||
} | ||
public function forget(){ | ||
include './view/haeder.php'; | ||
include './view/forget.php'; | ||
include './view/footer.php'; | ||
} | ||
// public function forgetphp(){ | ||
// include './model/reset_password.php'; | ||
// // } | ||
// public function password(){ | ||
// include './model/password.php'; | ||
// } | ||
public function resetpass() | ||
{ | ||
|
||
include "./view/resetp.php"; | ||
} | ||
public function otp() | ||
{ | ||
include './view/haeder.php'; | ||
include './view/otp.php'; | ||
include './view/footer.php'; | ||
} | ||
public function chackotp() | ||
{ | ||
include './model/chackotp.php'; | ||
} | ||
public function conpass() | ||
{ | ||
include "./view/haeder.php"; | ||
include "./view/conpass.php"; | ||
include "./view/footer.php"; | ||
} | ||
public function conpassphp() | ||
{ | ||
include "./model/conpassphp.php"; | ||
} | ||
} | ||
|
||
|
||
|
||
$obj= new fun(); | ||
|
||
|
||
?> |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.