-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlupa.php
executable file
·129 lines (64 loc) · 1.91 KB
/
lupa.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<?php
/*
******************************************************************
* CMS-TOKO-BIASAWAE v1.0 (code : Daun Muda). 2018
******************************************************************
* Dikembangkan oleh : Agus Muhajir *
* http://github.com/hajirodeon *
* http://hajirodeon.wordpress.com *
* http://facebook.com/hajirodeon *
* sms/wa/telegram : 081-829-88-54 *
* email : [email protected] *
* ****************************************************************
*/
session_start();
//ambil nilai
require("inc/config.php");
require("inc/fungsi.php");
require("inc/koneksi.php");
require("template/$temaku/cp_config.php");
$tpl = LoadTpl("template/$temaku/lupa.php");
nocache;
//nilai
$filenya = "lupa.php";
$s = nosql($_REQUEST['s']);
$judul = "Lupa Password";
$judulku = $judul;
$ke = "$sumber/$filenya";
//isi *START
ob_start();
?>
<script language='javascript'>
//membuat document jquery
$(document).ready(function(){
$("#ilogin").load("i_lupa.php?aksi=form");
});
</script>
<?php
echo '<table width="100%" border="0" cellpadding="5" cellspacing="5">
<tr>
<td valign="top">
<div id="ilogin">
<img src="template/img/progress-bar.gif" width="100" height="16">
</div>
<hr>
<div id="iproses" style="display:none">
<img src="template/img/progress-bar.gif" width="100" height="16">
</div>
<div id="ihasil"></div>
</td>
</tr>
</table>';
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//isi
$isi = ob_get_contents();
ob_end_clean();
//isi *START
ob_start();
require("i_member_menu.php");
//isi
$member_menu = ob_get_contents();
ob_end_clean();
require("inc/niltpl.php");
exit();
?>