-
Notifications
You must be signed in to change notification settings - Fork 2
/
reg.php
executable file
·185 lines (97 loc) · 3.04 KB
/
reg.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
<?php
//ambil nilai
require("inc/config.php");
require("inc/fungsi.php");
require("inc/koneksi.php");
nocache;
//nilai
$filenya = "login.php";
$filenya_ke = $sumber;
$judul = "BIKIN AKUN";
$judulku = $judul;
?>
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta http-equiv="content-type" content="text/x-component">
<title>BIKIN AKUN</title>
<!-- General meta details -->
<meta name="keywords" content="<?php echo $keywords;?>" />
<meta name="description" content="<?php echo $description;?>" />
<meta name="author" content="<?php echo $author;?>" />
<meta name="robot" content="index,follow" />
<!-- Bootstrap core JavaScript -->
<script src="template/vendor/jquery/jquery.min.js"></script>
<script src="template/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<!-- Plugin JavaScript -->
<script src="template/vendor/jquery-easing/jquery.easing.min.js"></script>
<script src="template/vendor/scrollreveal/scrollreveal.min.js"></script>
<script src="template/vendor/magnific-popup/jquery.magnific-popup.min.js"></script>
<!-- Custom scripts for this template -->
<script src="template/js/creative.min.js"></script>
<!-- Bootstrap core CSS -->
<link href="template/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom fonts for this template -->
<link href="template/vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<!-- Plugin CSS -->
<link href="template/vendor/magnific-popup/magnific-popup.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="template/css/creative.min.css" rel="stylesheet">
<script>
$(document).ready(function(){
$(document).ajaxStart(function()
{
$('#loading').show();
}).ajaxStop(function()
{
$('#loading').hide();
});
$("#ilogin").load("i_reg.php?aksi=form");
})
</script>
</head>
<body>
<table width="100% border="0">
<tr bgcolor="grey">
<td height="100" align="center">
<h1 align="center">SOSMEDKU</h1>
</td>
</tr>
</table>
<table width="100% border="0">
<tr valign="top" bgcolor="yellow">
<td height="500">
<div id="loading" style="display:none">
<img src="template/img/progress-bar.gif" width="100" height="16">
</div>
<table width="100%" border="0" cellpadding="5" cellspacing="5">
<tr>
<td valign="top">
<div id="iloginresult"></div>
<div id="ilogin">
<img src="template/img/progress-bar.gif" width="100" height="16">
</div>
</td>
</tr>
</table>
<hr>
[<a href="login.php">LOGIN</a>]
</td>
</tr>
</table>
<p align="center">
2018. Belajar WAPPSANDROID
</p>
<hr>
</body>
</html>
<?php
//diskonek
xclose($koneksi);
exit();
?>