관리-도구
편집 파일: forgot_password.php
<html> <head> <meta charset="UTF-8"> <title><?php w('Admin: Forgot Password'); ?></title> <link rel="shortcut icon" href="assets/img/favicon.ico" type="image/x-icon"> <link rel="icon" href="assets/img/favicon.ico" type="image/x-icon"> <link rel="stylesheet" href="assets/fontawesome/css/all.css"> <?php echo $headers; ?> </head> <body class="loginbg"> <div class="container-fluid bg " id="veuauththsection"> <div class="cf--course-config"> <div class="d-flex w-100 position-relative my-0 my-sm-5" style="height:600px"> <div class="cf-c-userlog-l" style='background-color:transparent;z-index:99;border-right: 2px solid #3232c1;'> <img src="assets/img/sideimg.png" alt="CourseFunnels" width="100%" height="100%" /> </div> <div class="bg-white text-primary cf-c-userlog-r mx-auto"> <div class="w-100 p-1 p-sm-2 px-0 px-sm-5"> <img src="assets/img/cf-brand.png" class="mx-auto d-flex img-fluid" alt="CourseFunnels" width="40%" /> <center> <h5 style="padding:4px;padding-top:14px;padding-bottom:14px;margin-bottom:10px;font-size:15px;"> <span class="text-secondary" v-if="fpwdstep==0">{{t('Forgot Password? Please enter Your Email')}}</span> <span class="text-secondary" v-if="fpwdstep==1">{{t('We have sent you an OTP, please enter')}}</span> <span class="text-secondary" v-if="fpwdstep==2">{{t('Add New Password')}}</span> </h5> </center> <div class="alert alert-success" v-if="fpwdstep==3"><strong>{{t('Your Password Updated Successfully. Redirecting to login...')}}</strong></div> <div class="mb-3 pb-3" v-if="fpwdstep==0"> <div class="input-group"> <input type="email" class="form-control" name="admin_email" id="admin_email" v-bind:placeholder="t('Please Enter Your Email')" v-model="email"> <span class="input-group-append"> <div class="input-group-text bg-transparent border-0"><i class="fas fa-envelope"></i> </div> </span> </div> </div> <div class="mb-3 pb-3" v-if="fpwdstep==1"> <div class="input-group"> <input type="text" class="form-control" name="admin_otp" id="admin_otp" v-bind:placeholder="t('Enter OTP')" v-model="fpwdotp"> <span class="input-group-append"> <div class="input-group-text bg-transparent border-0"><i class="fas fa-key"></i> </div> </span> </div> </div> <span v-if="fpwdstep==2"> <div class="pb-3 mb-3"> <div class="input-group"> <input type="password" class="form-control" name="password" id="password" v-bind:placeholder="t('Enter password')" v-model="userpass"> <span class="input-group-append"> <div class="input-group-text bg-transparent border-0"><i class="fa fa-lock fa-lg"></i> </div> </span> </div> </div> <div class="mb-3 pb-3"> <div class="input-group"> <input type="password" class="form-control" name="password" id="repassword" v-bind:placeholder="t('Re-enter password')" v-model="repass"> <span class="input-group-append"> <div class="input-group-text bg-transparent border-0"><i class="fa fa-lock fa-lg"></i> </div> </span> </div> </div> </span> <p v-if="(err.length>0)? true:false" style="color:#FF1493;font-size:14px;text-align:center;">{{t(err)}}</p> <center><button class="btn theme-button btn-block loginn w-100" name="login" type="button" v-on:click="forgotPassword($event)">{{t('Continue')}}</button> <p style="font-size:14px !important;margin-top:10px !important;"><a style="font-size:14px;margin-top:20px;font-weight:bold" href="index.php?page=login">{{t('Login Now')}}</a></p> <br><br> <h6 style="margin-bottom:0px;margin-top:10px;"><a href="https://teknikforce.com/" target="__blank">{{t('${1} @CourseFunnels by Teknikforce',['<?php echo date('Y'); ?>'])}}</a></h6> <p style="margin-bottom:0px;margin-top:5px;"><a href="http://teknikforce.com/support/" target="_BLANK" style="font-size:11px;">{{t('Need Support? Click here')}}</a></p> </center> </div> </div> </div> </div> </div> <?php echo $footer; ?> </body> </html>