-
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
Showing
11 changed files
with
124 additions
and
17 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
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
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
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,7 @@ | ||
|
||
<script src="https://code.jquery.com/jquery-3.6.0.js"></script> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"></script> | ||
<script src="<?php echo URLROOT ?>/public/js/main.js?=<?php echo time();?>"></script> | ||
</body> | ||
</html> |
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,16 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title><?php echo $data['title']?></title> | ||
|
||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"> | ||
|
||
|
||
<link rel="stylesheet" href="<?php echo URLROOT ?>/public/css/style.css?k=<?php echo time();?>" /> | ||
|
||
</head> | ||
<body class="bg-light"> | ||
|
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,16 @@ | ||
<div class="modal fade" id="modal" tabindex="-1" role="dialog" aria-hidden="true"> | ||
<div class="modal-dialog" role="document"> | ||
<div class="modal-content"> | ||
<div class="modal-header"> | ||
<h5 class="modal-title">Modal</h5> | ||
<button type="button" class="close" data-dismiss="modal" aria-label="Close"> | ||
<span aria-hidden="true">×</span> | ||
</button> | ||
</div> | ||
<div class="modal-body d-flex justify-content-center"></div> | ||
<div class="modal-footer"> | ||
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |
This file was deleted.
Oops, something went wrong.
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,55 @@ | ||
<?php | ||
$title = $data['title']; | ||
include_once HEADER_PATH; | ||
?> | ||
<div class=""> | ||
<div class="container mt-5"> | ||
|
||
<div class="tab-area d-flex justify-content-center"> | ||
<div class="tab-content w-50 d-flex p-3"> | ||
<div class="tab active" checked>Register</div> | ||
<div class="tab">Login</div> | ||
</div> | ||
</div> | ||
|
||
<div class=" d-flex justify-content-center"> | ||
<form class="row w-50"> | ||
<div class="col-lg-12 p-3"> | ||
<h4>Register</h4> | ||
</div> | ||
<div class="col-lg-12 p-3"> | ||
<label>Given Name:</label> | ||
<input class="form-control" placeholder="John"> | ||
</div> | ||
<div class="col-lg-12 p-3"> | ||
<label>Family Name:</label> | ||
<input class="form-control" placeholder="Doe"> | ||
</div> | ||
<div class="col-lg-12 p-3"> | ||
<label>Email:</label> | ||
<input class="form-control" placeholder="[email protected]"> | ||
</div> | ||
<div class="col-lg-12 p-3"> | ||
<label>Password:</label> | ||
<input class="form-control" type="password" placeholder=""> | ||
</div> | ||
<div class="col-lg-12 p-3"> | ||
<label>Confirm Password:</label> | ||
<input class="form-control" type="password" placeholder=""> | ||
</div> | ||
</form> | ||
</div> | ||
|
||
|
||
|
||
|
||
|
||
</div> | ||
</div> | ||
|
||
|
||
|
||
<?php | ||
include_once SIDEBAR_PATH; | ||
include_once FOOTER_PATH; | ||
?> |
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,9 @@ | ||
|
||
.tab{ | ||
background: #0044ff; | ||
padding: 20px 15px; | ||
cursor: pointer; | ||
} | ||
.tab .active{ | ||
background: pink!important; | ||
} |
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
<?php | ||
require_once '../app/require.php'; | ||
|
||
?> | ||
|
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,10 @@ | ||
$(document).ready(function(){ | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
}); |