forked from Web3WMG/Web3WMG
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.php
114 lines (108 loc) · 5.32 KB
/
signup.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
<?PHP
// This is used to geneate a unique number for catchpa
$id = md5(rand(6000,PHP_INT_MAX));
// This is used to constuct the cPanel login url
include('geturl.php');
?>
<script type="text/javascript">
function ismaxlength(obj){
var mlength=obj.getAttribute? parseInt(obj.getAttribute("maxlength")) : ""
if (obj.getAttribute && obj.value.length>mlength)
obj.value=obj.value.substring(0,mlength)
}
</script>
<!DOCTYPE html>
<html>
<head>
<!-- Template designed by iFastNet (iFastNet.com) exclusively for MyOwnFreeHost.com users -->
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1 width=device-width">
<title>Free Hosting Signup</title>
<meta name="description" content="Professional Free Hosting">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<!-- The Famous html Shiv or Shim -->
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<header>
<div class="container">
<div class="row">
<div class="col-md-12">
<nav class="navbar navbar-default">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle Navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="index.php" class="navbar-brand"><?echo $yourdomain;?></a>
</div>
<? include ('navigation.php'); ?>
</nav>
</div>
</div>
</div>
</header>
<div class="intro-mini">
<div class="container">
<h2>Please fill out the form below</h2>
</div>
</div>
<form id="updatedetails" name="updatedetails" class="signup" method=post action="http://order.<?echo $yourdomain;?>/register2.php">
<table>
<div class="form-group">
<tr><th>Username<td><input class="form-control" type=text name=username size=30 value="" maxlength="16" onkeyup="return ismaxlength(this)"><td>
</div>
<div class="form-group">
<tr><th>Password<td><input class="form-control" type=password name=password size=30 maxlength="8" onkeyup="return ismaxlength(this)"><td>
</div>
<div class="form-group">
<tr><th>Email Address<td><input class="form-control" type=text name=email size=30 value=""></td></tr>
</div>
<div class="form-group">
<tr><th>Site Category<td><select class="form-control" size="1" name="website_category">
<option>Personal</option>
<option>Business</option>
<option>Hobby</option>
<option>Forum</option>
<option>Adult</option>
<option>Dating</option>
<option>Software / Download</option>
</select>
</td></tr>
</div>
<div class="form-group">
<tr><th>Site Language<td>
<select class="form-control" size="1" name="website_language">
<option>English</option>
<option>Non-English</option>
</select>
</td></tr>
</div>
<input type=hidden name=id value="<?PHP echo $id; ?>">
<tr><th>Security Code<td><div ><img width="250px" height="90px" src="http://order.<? echo "$yourdomain" ;?>/image.php?id=<?PHP echo $id; ?>"></div><td>
<tr><th>Enter Security Code<td><input class="form-control" type=text name=number size=30><td>
<tr><th colspan=2><button type="submit" class="btn btn-primary">Submit</button><td></tr>
</table>
</form>
</div>
<div class="body_small">
<h3>To use your own domain</h3>
<p>You may not find the email confirmation in your inbox, so please check your Spam inbox.</p>
<h3>To use your own domain</h3>
<p>If you want to use your own domain name from third parties (free or premium), please remember to set your domain nameservers to ours, then complete the signup form above, then add your domain to your cPanel using Addon Domain:
<br /><span>ns1.<?echo $yourdomain;?></span>
<br /><span>ns2.<?echo $yourdomain;?></span>
</p>
</div>
</div>
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
<!-- Template designed by iFastNet (iFastNet.com) exclusively for MyOwnFreeHost.com users -->
</html>