-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage_security.php
118 lines (103 loc) · 4.81 KB
/
page_security.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
<?php
session_start();
include_once 'functions.php';
// если не авторизован, перенаправляем на login
if (is_not_logged_in()) {
redirect_to('page_login.php');
exit();
}
// если есть GET запрос, получаем пользователя из БД, чтобы подставить значения в форму
if (isset($_GET['id'])) {
$edit_user = get_user_by_id(intval($_GET['id']));
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Безопаность</title>
<meta name="description" content="Chartist.html">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, user-scalable=no, minimal-ui">
<link id="vendorsbundle" rel="stylesheet" media="screen, print" href="css/vendors.bundle.css">
<link id="appbundle" rel="stylesheet" media="screen, print" href="css/app.bundle.css">
<link id="myskin" rel="stylesheet" media="screen, print" href="css/skins/skin-master.css">
<link rel="stylesheet" media="screen, print" href="css/fa-solid.css">
<link rel="stylesheet" media="screen, print" href="css/fa-brands.css">
</head>
<body>
<?php include 'nav_component.php' ?>
<main id="js-page-content" role="main" class="page-content mt-3">
<?php
if (isset($_SESSION['success'])) {
display_flash_message("success");
}
if (isset($_SESSION['danger'])) {
display_flash_message("danger");
}
?>
<div class="subheader">
<h1 class="subheader-title">
<i class='subheader-icon fal fa-lock'></i> Безопасность
</h1>
</div>
<form action="security.php" method="post">
<div class="row">
<div class="col-xl-6">
<div id="panel-1" class="panel">
<div class="panel-container">
<div class="panel-hdr">
<h2>Обновление эл. адреса и пароля</h2>
</div>
<div class="panel-content">
<!-- email -->
<div class="form-group">
<label class="form-label" for="simpleinput">Email</label>
<input type="text" id="simpleinput" class="form-control" name="email"
value="<?= isset($edit_user['email']) ? $edit_user['email'] : "" ?>">
<input type="hidden" name="id"
value="<?= isset($edit_user['id']) ? $edit_user['id'] : "" ?>">
</div>
<!-- password -->
<div class="form-group">
<label class="form-label" for="simpleinput">Пароль</label>
<input type="password" id="simpleinput" name="password" class="form-control">
</div>
<!-- password confirmation-->
<div class="form-group">
<label class="form-label" for="simpleinput">Подтверждение пароля</label>
<input type="password" id="simpleinput" name="confirmed_password" class="form-control">
</div>
<div class="col-md-12 mt-3 d-flex flex-row-reverse">
<button class="btn btn-warning">Изменить</button>
</div>
</div>
</div>
</div>
</div>
</div>
</form>
</main>
<script src="js/vendors.bundle.js"></script>
<script src="js/app.bundle.js"></script>
<script>
$(document).ready(function () {
$('input[type=radio][name=contactview]').change(function () {
if (this.value == 'grid') {
$('#js-contacts .card').removeClassPrefix('mb-').addClass('mb-g');
$('#js-contacts .col-xl-12').removeClassPrefix('col-xl-').addClass('col-xl-4');
$('#js-contacts .js-expand-btn').addClass('d-none');
$('#js-contacts .card-body + .card-body').addClass('show');
} else if (this.value == 'table') {
$('#js-contacts .card').removeClassPrefix('mb-').addClass('mb-1');
$('#js-contacts .col-xl-4').removeClassPrefix('col-xl-').addClass('col-xl-12');
$('#js-contacts .js-expand-btn').removeClass('d-none');
$('#js-contacts .card-body + .card-body').removeClass('show');
}
});
//initialize filter
initApp.listFilter($('#js-contacts'), $('#js-filter-contacts'));
});
</script>
</body>
</html>