-
-
Notifications
You must be signed in to change notification settings - Fork 250
/
signup.php
129 lines (108 loc) · 4.51 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<?php include 'config/declare.php'; ?>
<!-- a universal file that has all the classes included -->
<?php include 'config/classesGetter.php'; ?>
<!-- creating objects -->
<?php
$universal = new universal;
?>
<?php
if ($universal->isLoggedIn()) {
header('Location: '.DIR);
}
?>
<?php
$title = "Signup • Instagram";
$keywords = "Instagram, Share and capture world's moments, share, capture, share, login, signup";
$desc = "Instagram lets you capture, follow, like and share world's moments in a better way and tell your story with photos, messages, posts and everything in between";
?>
<?php include 'index_include/index_header.php'; ?>
<div class="container">
<div class="log_sign">
<a href="login" class="pri_btn">Already have an account?</a>
</div>
<div class="input_wrapper">
<div class="display_text">
<span>Get started now and let the fun begins</span>
</div>
<div class="sign_up_div">
<form class="sign_up" id="sign_up" action="" method="post">
<input type="text" name="s_username" value="" autocomplete="off" placeholder="Username" class="s_username big_input" spellcheck="false" mssg="" maxlength="30" required autofocus>
<div class="username_checker">
<span class="checker_text">username not available</span>
<span class="checker_icon">
<i class="fa fa-frown-o" aria-hidden="true"></i>
</span>
</div>
<input type="text" name="s_first_name" value="" autocomplete="off" placeholder="First name" class="s_firstname small_input" spellcheck="false" maxlength="20" required>
<input type="text" name="s_surname" value="" autocomplete="off" placeholder="Surname" class="s_surname small_input" spellcheck="false" maxlength="20" required>
<input type="email" name="s_email" value="" autocomplete="off" placeholder="Email" class="s_email big_input" spellcheck="false" maxlength="52" required>
<input type="password" name="s_password" value="" autocomplete="off" placeholder="Password" class="s_password big_input" maxlength="32" spellcheck="false" required id="password">
<span class="show_psswrd" id="show_psswrd">
<i class="fa fa-lock" aria-hidden="true"></i>
</span>
<div class="psswrd_strength">
<div class="one"></div>
<div class="two"></div>
<div class="three"></div>
<div class="four"></div>
</div><br>
<input type="checkbox" id="s_terms" name="s_terms" class="s_terms" required>
<label for="s_terms" class="terms">I agree to <a href="terms" class="a_pri">Instagram Terms</a></label>
<input type="submit" name="s_submit" value="Sign up for free" class="s_submit">
</form>
</div>
</div>
<div class="notify">
<span></span>
</div>
</div>
<div class="overlay-2"></div>
<?php include 'index_include/index_footer.php'; ?>
<script type="text/javascript">
$(function(){
$('.s_username').username_checker();
$('input[type="password"]').psswrd_strength();
$('form').on('submit', (function(e){
e.preventDefault();
$('.s_submit').prop('disabled', true);
$('.overlay-2').show();
var username = $('.s_username').val();
var firstname = $('.s_firstname').val();
var surname = $('.s_surname').val();
var email = $('.s_email').val();
var password = $('.s_password').val();
var terms = $('.s_terms').val();
$.ajax({
url: DIR+"/ajaxify/ajax_requests/register_requests.php",
method: 'POST',
cache: false,
data: {
username: username,
firstname: firstname,
surname: surname,
email: email,
password: password,
terms: terms
},
success: function(data){
console.log(data);
if (data == "Successfull") {
console.log('yepp');
$('.s_submit').prop('disabled', true);
$('.s_submit').prop('value', 'Redirecting..');
$('.overlay-2').show();
// window.location.href = DIR+"/success";
window.location.href = DIR+"/thanks";
} else {
$('.s_submit').prop('disabled', false);
$('.overlay-2').hide();
$('.notify').notify({ value: 'Hello ' + username + '!!' });
}
}
});
}));
$('#show_psswrd').togglePassword({
input: document.getElementById('password')
});
});
</script>