28 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="sr">
 | |
| <head>
 | |
|     <meta charset="UTF-8">
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | |
|     <link rel="stylesheet" href="/styles/reset.css">
 | |
|     <link rel="stylesheet" href="/styles/style.css">
 | |
|     <link rel="stylesheet" href="/styles/account.css">
 | |
|     <link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
 | |
|     <title>User password change in LDAP system</title>
 | |
| </head>
 | |
| <body>
 | |
|    <main class="container">
 | |
|         <h1 style="text-align:center;">Change password</h1>
 | |
|         <form action="/account/changepassword/" method="POST" style="text-align:center;">
 | |
|             <label for="username">username</label>
 | |
|             <input type="text" name="username" id="username" placeholder="username" required>
 | |
|             <label for="oldpassword">oldpassword</label>
 | |
|             <input type="password" name="oldpassword" id="oldpassword" placeholder="oldpassword" required>
 | |
|             <label for="newpassword">newpassword</label>
 | |
|             <input type="password" name="newpassword" id="newpassword" placeholder="newpassword" required>
 | |
|             <br>
 | |
|             <button>Change Password</button>
 | |
|         </form>
 | |
|    </main> 
 | |
| </body>
 | |
| </html>
 |