Skip to content

Commit 064cb71

Browse files
committed
Fixed the user sign up issue
1 parent f0a0284 commit 064cb71

File tree

7 files changed

+21
-7
lines changed

7 files changed

+21
-7
lines changed

App/Controllers/Blog/RegisterController.php

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ class RegisterController extends Controller
1313
*/
1414
public function index()
1515
{
16+
$loginModel = $this->load->model('Login');
17+
1618
if ($loginModel->isLogged()) {
1719
return $this->url->redirectTo('/');
1820
}

App/Models/UsersModel.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public function create()
4545
->data('password', password_hash($this->request->post('password'), PASSWORD_DEFAULT))
4646
->data('status', $this->request->post('status'))
4747
->data('gender', $this->request->post('gender'))
48-
->data('birthday', strtotime($this->request->post('birthday')))
48+
// ->data('birthday', strtotime($this->request->post('birthday')))
4949
->data('ip', $this->request->server('REMOTE_ADDR'))
5050
->data('created', $now = time())
5151
->data('code', sha1($now . mt_rand()))

App/Views/admin/common/footer.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<div class="pull-right hidden-xs">
33
<b>Version</b> 2.3.3
44
</div>
5-
<strong>Copyright &copy; 2021 <a href="../http://www.aymanelash.com">Ayman Elash</a>.</strong> All rights
5+
<strong>Copyright &copy; 2021 <a href="../http://www.ahmedyahya.com">Ahmed Yahya</a>.</strong> All rights
66
reserved.
77
</footer>
88
</div>

App/Views/blog/users/login.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
</div>
2121
<div class="form-group">
2222
<div class=" col-sm-offset-3 col-sm-9">
23-
<button class="button bold submit-btn">Sign Up</button>
23+
<button class="button bold submit-btn">Login</button>
2424
</div>
2525
</div>
2626
</form>

Database - blog/blog database - SQL Dump File - PhpMyAdmin Export.sql

+2-2
Original file line numberDiff line numberDiff line change
@@ -205,9 +205,9 @@ CREATE TABLE `users` (
205205
`password` varchar(128) NOT NULL,
206206
`image` varchar(255) NOT NULL,
207207
`gender` varchar(6) NOT NULL,
208-
`birthday` int NOT NULL,
208+
`birthday` int,
209209
`created` int NOT NULL,
210-
`status` varchar(20) NOT NULL,
210+
`status` varchar(20),
211211
`ip` varchar(32) NOT NULL,
212212
`code` varchar(40) NOT NULL
213213
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;

public/blog/js/custom.js

+8-1
Original file line numberDiff line numberDiff line change
@@ -71,14 +71,21 @@ $(function () {
7171
formResults.removeClass().addClass('alert alert-info').html('Loading...');
7272
},
7373
success: function(results) {
74+
// console.log(results);
75+
7476
if (results.errors) {
7577
formResults.removeClass().addClass('alert alert-danger').html(results.errors);
7678
} else if (results.success) {
7779
formResults.removeClass().addClass('alert alert-success').html(results.success);
7880
}
7981

8082
if (results.redirectTo) {
81-
window.location.href = results.redirectTo;
83+
// window.location.href = results.redirectTo;
84+
// console.log(results.redirectTo);
85+
86+
setTimeout(() => { // Arrow Function Syntax
87+
window.location.href = results.redirectTo;
88+
}, 2000);
8289
}
8390
},
8491
cache: false,

vendor/helpers.php

+6-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,12 @@ function array_get($array, $key, $default = null)
5555
*/
5656
function _e($value)
5757
{
58-
return htmlspecialchars($value);
58+
// Fixed issue upon user Sign Up form submission
59+
if ($value != null) {
60+
return htmlspecialchars($value);
61+
}
62+
63+
// return htmlspecialchars($value);
5964
}
6065
}
6166

0 commit comments

Comments
 (0)