forked from UKKWariors/Website-Pengaduan-Masyarakat-Remake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
verifikasi_telat.php
56 lines (51 loc) · 1.7 KB
/
verifikasi_telat.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
session_start() ;
include('conn/koneksi.php');
?>
<?php
if(isset($_POST["verify"])){
$email = $_SESSION['mail'];
$otp_code = $_POST['otp_code'];
$otp = $_SESSION['otp'];
if($otp != $otp_code){
echo "<script>alert('Kode verifikasi salah!')</script>";
}else{
mysqli_query($koneksi, "UPDATE masyarakat SET verif = 1 WHERE email = '$email'");
?>
<script>
echo "alert('Selamat, akun anda telah diverifikasi')";
window.location.replace("cek.php");
</script>
<?php
}
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<title>Verifikasi Telat</title>
<link rel="stylesheet" href="css/verifikasi.css">
<link rel="stylesheet" href="css/all.min.css">
<script src="js/jquery.min.js"></script>
<script src="js/main.js"></script>
<link rel="icon" href="../image/otp.png">
</head>
<body>
<div class="box">
<div class="form">
<form action="#" method="POST">
<h2>Silahkan masukkan kode verifikasi telat anda</h2>
<div class="inputBox">
<input type="text" id="otp" name="otp_code" required="required" autocomplete="off" autofocus>
<span>Kode Verifikasi</span>
<i></i>
</div>
<br>
<input type="submit" value="Verifikasi" name="verify">
<br>
</form>
</div>
</div>
</body>