-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpassword.php
More file actions
94 lines (75 loc) · 3.72 KB
/
Copy pathpassword.php
File metadata and controls
94 lines (75 loc) · 3.72 KB
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
<?php
require ("x_session.php");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>FM20 - Cambio Password</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link href="https://fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/nuova_spesa.css">
<!-- Javascript
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<!--script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script-->
<script src="js/password.js"></script>
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="icon" type="image/png" href="images/favicon.png">
</head>
<body>
<!-- Primary Page Layout
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<div class="container">
<div class="row">
<div style="margin-top: 10%">
<a href='index.php'><img src='images/left.png' style='height: 25px;width: 25px;margin-right: 20px;'></a>
<h3 style='text-align:left;display: inline-block'>Cambia Password</h3>
<p>Login come: <?echo $x_nu;?></p></div>
</div>
<form action="x_password.php" method="POST">
<div class="row">
<div class="eight columns">
<label for="password">Vecchia Password</label>
<input type="password" id="vpassword" name="vpassword" required>
</div>
</div>
<div class="row">
<div class="eight columns">
<label for="npassword">Nuova Password</label>
<input type="password" id="npassword" name="npassword" required>
</div>
</div>
<div class="row">
<div class="eight columns">
<label for="rnpassword">Ripeti Nuova Password</label>
<input type="password" id="rnpassword" name="rnpassword" oninput="conti();" required>
</div>
</div>
<div id="controllo"></div>
<div class="row">
<div class="four columns">
<br />
<input type="submit" id="bottone" value="Salva">
<br />
Le password vengono criptate e salvate nel nostro database.
</div>
</div>
</form>
</div>
<!-- End Document
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
</body>
</html>