-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnie_pamietam_hasla.php
117 lines (93 loc) · 2.37 KB
/
nie_pamietam_hasla.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
<?php
//--- dolaczenie plikow
if(file_exists('config.php')) {
include('config.php');
include('inc/baza_polacz.php');
}
include('funkcje/funkcje.php');
include('funkcje/funkcje_odczytu.php');
include("inc/sesje.php");
?>
<!doctype html>
<html lang="pl">
<head>
<?php
//--- dolaczenie plikow
include('inc/head.php');
?>
</head>
<body>
<?php
//--- dolaczenie plikow
if(file_exists('config.php')) {
include('inc/menu.php');
include('inc/baner.php');
include('operacje/!_spis.php');
include('inc/pole_alerts.php');
}
?>
<?php
if(file_exists('config.php')) {
//zainstalowany
?>
<div class="container tresc">
<div class="page-header">
<h1>Nie Pamiętam Hasła <span></span></h1>
</div>
<?php
if(isset($_SESSION['sesja_uzyt']['zalogowany'])){
}else{
?>
<?php
if (!isset($haslo)){
?>
<div class="jumbotron border">
<div class="img-rounded postep_0">
<p class="lead">Jeśli nie pamiętasz hasła do Systemu GoodStat, nic się nie martw, podaj Swój Login, a system automatycznie wygeneruje Nowe Hasło, po zalogowaniu będzie można je zmienić na inne w dziale: <b>System/Zmiana Hasła</b>.</p>
</div>
</div>
<div class="row justify-content-md-center">
<div class="col-md-4">
<form action="nie_pamietam_hasla.php" method="post">
<fieldset class="border p-2">
<legend class="w-auto">formularz</legend>
<div class="form-group">
<label for="login">login</label>
<input type="password" class="form-control" id="login" name="l" placeholder="podaj Swój Login" required>
</div>
</fieldset>
<fieldset class="border tblFooters">
<button type="submit" name="wyslij_12" class="btn btn-primary btn-lg btn-block my-4">Wyślij</button>
</fieldset>
</form>
</div>
</div>
<?php
}else{
?>
<div class="jumbotron border">
<div class="img-rounded postep_0">
<p class="lead">Nowe Hasło to: <strong><?php echo $haslo; ?></strong> po zalogowaniu będzie można je zmienić na inne w dziale: <b>System/Zmiana Hasła</b>.</p>
</div>
</div>
<?php
}
?>
<?php
}
?>
</div>
<?php
}else{
//instalacja
include('instalacja/index.php');
}
?>
<?php
if(file_exists('config.php')) {
include('inc/stopka.php');
}
include('inc/stopka_bootstrap.php');
?>
</body>
</html>