-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactivate.php
131 lines (119 loc) · 7.24 KB
/
activate.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
<?php
// *************************************************************************
// * *
// * DEPRIXA - Integrated Web system *
// * Copyright (c) JAOMWEB. All Rights Reserved *
// * *
// *************************************************************************
// * *
// * Email: [email protected] *
// * Website: http://www.jaom.info *
// * *
// *************************************************************************
// * *
// * This software is furnished under a license and may be used and copied *
// * only in accordance with the terms of such license and with the *
// * inclusion of the above copyright notice. *
// * If you Purchased from Codecanyon, Please read the full License from *
// * here- http://codecanyon.net/licenses/standard *
// * *
// *************************************************************************
define("_VALID_PHP", true);
require_once("init.php");
if ($user->logged_in)
redirect_to("dashboard/client.php");
?>
<?php include("assets/templates/head_activate.php");?>
<!-- Navbar STart -->
<header id="topnav" class="defaultscroll sticky">
<div class="container">
<!-- Logo container-->
<div>
<a class="logo" href="index.php"><?php echo ($core->logo) ? '<img src="'.SITEURL.'/uploads/'.$core->logo.'" alt="'.$core->site_name.'" width="190" height="39"/>': $core->site_name;?></a>
</div>
<div class="buy-button">
<a href="sign-up.php" class="btn btn-light-outline rounded"><i class="mdi mdi-account-alert ml-3 icons"></i> <?php echo $lang['left186'] ?></a>
</div><!--end login button-->
<div class="menu-extras">
<div class="menu-item">
<!-- Mobile menu toggle-->
<a class="navbar-toggle">
<div class="lines">
<span></span>
<span></span>
<span></span>
</div>
</a>
<!-- End mobile menu toggle-->
</div>
</div>
<div id="navigation">
<!-- Navigation Menu-->
<ul class="navigation-menu">
<li><a href="index.php"><?php echo $lang['left187'] ?></a></li>
<li><a href="tracking.php"><i class="mdi mdi-package-variant-closed"></i> <?php echo $lang['left188'] ?></a></li>
</ul>
</div>
</div>
</header>
<!-- Navbar End -->
<!-- Hero Start -->
<section class="bg-home">
<div class="home-center">
<div class="home-desc-center">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-8 col-md-6">
<div class="mr-lg-5">
<img src="<?php SITEURL ?>assets/theme_deprixa/images/contact.png" class="img-fluid" alt="">
</div>
</div>
<div class="col-lg-4 col-md-6 mt-4 mt-sm-0 pt-2 pt-sm-0">
<div class="login-page bg-white shadow rounded p-4">
<div class="text-center">
<h5 class="mb-4"><?php echo $lang['langs_01049'] ?></h5>
</div>
<div id="msgholder"></div>
<div id="loader" style="display:none"></div>
<form class="login-form" id="admin_form" method="post">
<div class="row">
<div class="col-lg-12">
<div class="form-group position-relative">
<label><?php echo $lang['left189'] ?> <span class="text-danger">*</span></label>
<i class="mdi mdi-key-variant ml-3 icons"></i>
<input type="text" class="form-control pl-5" placeholder="<?php echo $lang['left190'] ?>" name="token" required="">
</div>
</div>
<div class="col-lg-12">
<div class="form-group position-relative">
<label><?php echo $lang['left191'] ?> <span class="text-danger">*</span></label>
<i class="mdi mdi-mail-ru ml-3 icons"></i>
<input type="email" class="form-control pl-5" placeholder="<?php echo $lang['left192'] ?>" name="email"required="">
</div>
</div>
<div class="col-lg-12 mb-0">
<button type="submit" name="dosubmit" class="btn btn-primary rounded w-100" ><?php echo $lang['langs_01052'] ?></button>
</div>
<div class="col-lg-12 mt-4 text-center">
</div>
</div>
</form>
<?php echo Core::doForm("accActivate","ajax/user.php");?>
<br><br>
<p>
<?php echo $lang['langs_010109'] ?> </br><?php if($core->reg_allowed):?><a href="sign-up.php" class="text-primary"><?php echo $lang['langs_010110'] ?></a><?php endif;?> | <a href="index.php" class="text-primary"><?php echo $lang['langs_010111'] ?></a>
</p>
</div><!---->
</div> <!--end col-->
</div><!--end row-->
</div> <!--end container-->
</div>
</div>
</section><!--end section-->
<!-- Hero End -->
<!-- Back to top -->
<a href="#" class="back-to-top rounded text-center" id="back-to-top">
<i class="mdi mdi-chevron-up d-block"> </i>
</a>
<!-- Back to top -->
<?php include("assets/template/footer_all.php");?>