forked from BasmaElhoseny01/Olympic-games-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpass.php
22 lines (18 loc) · 853 Bytes
/
pass.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
require_once 'header_login.php';
echo '<link rel="stylesheet" type="text/css" href="includes/style.css">';
?>
<br><br><br>
<br><br>
<div class="sign cards edit editM" >
<form action="includes/pass-inc.php" method="post">
<input type="text" pattern="[A-Za-z0-9_]+" title="Insert letters or numbers or _ without spaces" name="username" placeholder= "UserName" style="margin: 10px auto;">
<input type="password" name="opass" placeholder= "Old Password" style="margin: 10px auto;">
<input type="password" name="pass" placeholder= "Password" style="margin: 10px auto;">
<input type="password" name="cpass" placeholder= "Confirm Password" style="margin: 10px auto;">
<button type = "submit" name="submit">change</button>
</form>
</div>
<?php
require_once 'includes/footer.php';
?>