-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathaction.php
More file actions
executable file
·101 lines (69 loc) · 1.89 KB
/
action.php
File metadata and controls
executable file
·101 lines (69 loc) · 1.89 KB
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
<?php require("classes/cls.constants.php"); include("classes/cls.paths.php"); ?>
<?php include("zscript_meta.php");
if(!isset($_SESSION['sess_dhub_member']))
{
if($this_page == 'profile.php') { header("Location: index.php?qst=199"); }
}
?>
<body>
<?php include("includes/wrap_head.php"); ?>
<div>
<div class="head_width">
<div class="padd15_0">
<div class="subcolumns clearfix" style="overflow:visible;">
<div class="col-md-12">
<div class="padd15" style="min-height:400px;">
<div id="wrapper" class="">
<?php
$ac = @$request['ac'];
$fcall = @$request['fcall'];
if(isset($_REQUEST['ac']))
{
if($reg_mod == 'mbr'){
echo display_PageTitle('Accept Account Invite');
include("includes/form.account.createpass.php");
}
if($reg_mod == 'rst'){
//echo display_PageTitle('Reset Account Password');
include("includes/form.account.resetpass.php");
}
}
if(isset($_REQUEST['fcall']))
{
$fcall = $request['fcall'];
if($fcall == 'signin'){
echo display_PageTitle('Sign In');
include("includes/form.account.login.php");
}
}
if($ac == '' and $fcall == ''){
echo display_PageTitle('Warning! Invalid request.');
?>
<div class="subcolumns clearfix">
<!-- home cont -->
<div class="col-md-6">
<div class="padd15_t padd15_r">
<?php include("includes/nav_downloads-latest.php"); ?>
</div>
</div>
<div class="col-md-6">
<div class="padd15_t padd15_r">
<?php include("includes/nav_downloads-popular.php"); ?>
</div>
</div>
<!-- end:: home cont -->
</div>
<?php
}
?>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php include("includes/wrap_foot.php"); ?>
<?php include("zscript_vary.php"); ?>
</body>
</html>