-
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.
Showing
12 changed files
with
343 additions
and
20 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 |
---|---|---|
|
@@ -2,4 +2,5 @@ log/* | |
cache/* | ||
app/src/models | ||
|
||
send_mail_info.php | ||
send_mail_info.php | ||
API CODE |
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,20 @@ | ||
<?php | ||
|
||
namespace App\Controller; | ||
|
||
use Psr\Http\Message\ServerRequestInterface as Request; | ||
use Psr\Http\Message\ResponseInterface as Response; | ||
|
||
use PHPMailer\PHPMailer\PHPMailer; | ||
use PHPMailer\PHPMailer\SMtP; | ||
use PHPMailer\PHPMailer\Exception; | ||
|
||
final class VerifiedPage extends BaseController | ||
{ | ||
public function VerifiedPage(Request $request, Response $response, $args) | ||
{ | ||
|
||
$this->view->render($response, 'verifiedPage.twig'); | ||
return $response; | ||
} | ||
} |
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,74 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<!-- Required meta tags --> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
<title>RUMER - ForgotPassword</title> | ||
<!-- Bootstrap CSS --> | ||
<link rel="stylesheet" href="bootstrap/assets/vendor/bootstrap/css/bootstrap.min.css"> | ||
<link href="bootstrap/assets/vendor/fonts/circular-std/style.css" rel="stylesheet"> | ||
<link rel="stylesheet" href="bootstrap/assets/libs/css/style.css"> | ||
<link rel="stylesheet" href="bootstrap/assets/vendor/fonts/fontawesome/css/fontawesome-all.css"> | ||
<style> | ||
html, | ||
body { | ||
height: 100%; | ||
} | ||
body { | ||
display: -ms-flexbox; | ||
display: flex; | ||
-ms-flex-align: center; | ||
align-items: center; | ||
padding-top: 40px; | ||
padding-bottom: 40px; | ||
background-image: url('https://www.francechimie.fr/media/e34580ffb57afb63ff48eeee4f85e8cb.jpg'); | ||
background-size: cover; | ||
} | ||
.splash-description { | ||
color: whitesmoke; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<!-- ============================================================== --> | ||
<!-- forgot password --> | ||
<!-- ============================================================== --> | ||
<div class="splash-container"> | ||
<div class="card"> | ||
<div class="card-header text-center"><img class="logo-img" src="/bootstrap/assets/images/lo-go2.png" | ||
alt="logo"> | ||
<span class="splash-description">Please enter your user information.</span></div> | ||
<div class="card-body"> | ||
<form> | ||
<p style="color: whitesmoke;">Don't worry, we'll send you an email to reset your password.</p> | ||
<div class="form-group"> | ||
<input class="form-control form-control-lg" type="text" name="user_name" required="" | ||
placeholder="Username" autocomplete="off"> | ||
{# <input class="form-control form-control-lg" type="email" name="email" required="" | ||
placeholder="Your Email" autocomplete="off"> #} | ||
</div> | ||
<div class="form-group pt-1"><a class="btn btn-block btn-primary btn-xl" href="../index.html">Reset | ||
Password</a></div> | ||
</form> | ||
</div> | ||
<div class="card-footer text-center"> | ||
<span>Don't have an account? <a href="signup">Sign Up</a></span> | ||
</div> | ||
</div> | ||
</div> | ||
<!-- ============================================================== --> | ||
<!-- end forgot password --> | ||
<!-- ============================================================== --> | ||
<!-- Optional JavaScript --> | ||
<script src="../assets/vendor/jquery/jquery-3.3.1.min.js"></script> | ||
<script src="../assets/vendor/bootstrap/js/bootstrap.bundle.js"></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
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,94 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<!-- Required meta tags --> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
<title>Rumer - Verification Success</title> | ||
<!-- Bootstrap CSS --> | ||
<link rel="stylesheet" href="bootstrap/assets/vendor/bootstrap/css/bootstrap.min.css"> | ||
<link href="bootstrap/assets/vendor/fonts/circular-std/style.css" rel="stylesheet"> | ||
<link rel="stylesheet" href="bootstrap/assets/libs/css/style.css"> | ||
<link rel="stylesheet" href="bootstrap/assets/vendor/fonts/fontawesome/css/fontawesome-all.css"> | ||
</head> | ||
|
||
<body style="background-color: rgb(0, 0, 0,25);"> | ||
<!-- ============================================================== --> | ||
<!-- main wrapper --> | ||
<!-- ============================================================== --> | ||
<div class="dashboard-main-wrapper p-0"> | ||
<!-- ============================================================== --> | ||
<!-- navbar --> | ||
<!-- ============================================================== --> | ||
<nav class="navbar navbar-expand dashboard-top-header bg-white"> | ||
<div class="container-fluid"> | ||
<!-- ============================================================== --> | ||
<!-- brand logo --> | ||
<!-- ============================================================== --> | ||
<div class="dashboard-nav-brand"> | ||
<a class="dashboard-logo" href="/" style="color: black;">Rumer</a> | ||
</div> | ||
<!-- ============================================================== --> | ||
<!-- end brand logo --> | ||
<!-- ============================================================== --> | ||
</div> | ||
</nav> | ||
<!-- ============================================================== --> | ||
<!-- end navbar --> | ||
<!-- ============================================================== --> | ||
<!-- ============================================================== --> | ||
<!-- wrapper --> | ||
<!-- ============================================================== --> | ||
<div class="bg-light text-center" style="color: dimgray;"> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="offset-xl-2 col-xl-8 offset-lg-2 col-lg-8 col-md-12 col-sm-12 col-12"> | ||
<div class="error-section" style="background-color: dimgray;"> | ||
<img src="../assets/images/lo-go.png" alt="" class="img-fluid"> | ||
<div class="error-section-content"> | ||
<h1 class="display-3" style="color:whitesmoke;">Thank you!</h1> | ||
<p style="color:whitesmoke;">Verification completed. Please sign in</p> | ||
<a href="/" class="btn btn-secondary btn-lg">Back to Sign in</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<!-- ============================================================== --> | ||
<!-- footer --> | ||
<!-- ============================================================== --> | ||
<div class="bg-white p-3"> | ||
<div class="container-fluid"> | ||
<div class="row"> | ||
<div class="col-xl-12 col-lg-12 col-md-12 col-sm-12 col-12 text-dark text-center"> | ||
Copyright © 2018 Concept. All rights reserved. | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<!-- ============================================================== --> | ||
<!-- end footer --> | ||
<!-- ============================================================== --> | ||
<!-- ============================================================== --> | ||
<!-- end wrapper --> | ||
<!-- ============================================================== --> | ||
<!-- ============================================================== --> | ||
<!-- end footer --> | ||
<!-- ============================================================== --> | ||
</div> | ||
</div> | ||
<!-- ============================================================== --> | ||
<!-- end main wrapper --> | ||
<!-- ============================================================== --> | ||
<!-- ============================================================== --> | ||
<!-- end main wrapper --> | ||
<!-- ============================================================== --> | ||
<!-- Optional JavaScript --> | ||
<script src="../assets/vendor/jquery/jquery-3.3.1.min.js"></script> | ||
<script src="../assets/vendor/bootstrap/js/bootstrap.bundle.js"></script> | ||
<script src="../assets/vendor/slimscroll/jquery.slimscroll.js"></script> | ||
<script src="../assets/libs/js/main-js.js"></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
Oops, something went wrong.