FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Shop_Task/activate.php at master · mastercho/Shop_Task · GitHub
mastercho
/
Shop_Task
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
Shop_Task
/
activate.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
71 lines (56 loc) · 1.69 KB
Breadcrumbs
Shop_Task
/
activate.php
Copy path
File metadata and controls
71 lines (56 loc) · 1.69 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
<?php
require_once
'
./views/top.php
'
;
require_once
'
./models/user.php
'
;
if
(!
isset
(
$
_REQUEST
[
'
uname
'
])){
header
(
"
location:index.php
"
);
}
?>
</head>
<body>
<!--logo Area-->
<?php
require_once
'
./views/header.php
'
;
?>
<!--logo area closed-->
<!--coursal-->
<?php
//require_once './views/slider.php';
?>
<!--Coursal-->
<!-- Page Content -->
<div class="container">
<!--Middle Nav-->
<?php
//require_once './views/middle_nav.php';
?>
<!--Middle Nav close-->
<!-- Products -->
<div class="col-sm-9" id="product_area">
<div class="col-md-12" >
<h2 class="page-header">Activate User</h2>
</div>
<div class="col-md-12">
<div class="col-md-5">
<label><h3> ACTIVATE MY ACCOUNT</h3>
Click on the button to activate
</label>
</div><br>
<div class="col-md-5">
<form class="form-horizontal" method="post" action="process/process_signup.php?action=activate">
<input class="form-control" type="hidden" name="username" value="
<?php
echo
$
_REQUEST
[
'
uname
'
];
?>
">
<input class="form-control" type="hidden" name="status" value="Active">
<input class="form-control btn-primary" type="submit" value="Activate my Account">
</form>
</div>
</div>
</div>
<!---Product Close-->
</div>
<!-- Footer -->
<hr>
<?php
require_once
"
./views/footer.php
"
;
?>
<!--Footer-->
</body>
</html>
Back
|
FazBrowse Home
|
New Git URL