uawdijnntqw1x1x1
IP : 216.73.216.93
Hostname : panel.codeskitter.com
Kernel : Linux panel.codeskitter.com 6.8.0-100-generic #100-Ubuntu SMP PREEMPT_DYNAMIC Tue Jan 13 16:40:06 UTC 2026 x86_64
Disable Function : apache_child_terminate, apache_note, apache_setenv, define_syslog_variables, dl, link, opcache_get_status, openlog, pcntl_exec, pcntl_fork, pcntl_setpriority, popen, posix_getpwuid, posix_kill, posix_mkfifo, posix_setpgid, posix_setsid, posix_setuid
OS : Linux
PATH:
/
home
/
users
/
unlimited
/
www
/
nigeria.codeskitter.site
/
student
/
..
/
resend_otp.php
/
/
<?php include 'config.php'; session_start(); if(isset($_POST['email'])) { $email = $_POST['email']; // Generate new OTP $otp = rand(100000, 999999); $_SESSION['otp_code'] = $otp; $_SESSION['otp_expiry'] = time() + (10 * 60); // OTP valid for 10 minutes // Send OTP email $subject = "Verify Your Email - Gex Neural Academy"; $message = " <html> <head> <title>Email Verification</title> </head> <body> <h2>Welcome to Gex Neural Academy!</h2> <p>Your new OTP code for email verification is: <strong>$otp</strong></p> <p>This code will expire in 10 minutes.</p> <p>If you didn't request this, please ignore this email.</p> </body> </html> "; $headers = "MIME-Version: 1.0" . "\r\n"; $headers .= "Content-type:text/html;charset=UTF-8" . "\r\n"; $headers .= "From: no-reply@gexneuralacademy.com" . "\r\n"; if(mail($email, $subject, $message, $headers)) { echo json_encode(['success' => true]); } else { echo json_encode(['success' => false]); } } else { echo json_encode(['success' => false]); } ?>
/home/users/unlimited/www/nigeria.codeskitter.site/student/../resend_otp.php