34 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="sr">
 | |
| <head>
 | |
|     <meta charset="UTF-8">
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | |
|     <title>User unregistration to LDAP system</title>
 | |
|     <style>
 | |
|         .container {
 | |
|             max-width:900px;
 | |
|             margin: 0 auto;
 | |
|             font-family: Arial, Helvetica, sans-serif;
 | |
|             color: #3d3d3d;
 | |
|         }
 | |
| 
 | |
|         body {
 | |
|             background-color: #e6e6e6;
 | |
|         }
 | |
|     </style>
 | |
| </head>
 | |
| <body>
 | |
|    <main class="container">
 | |
|         <h1 style="text-align:center;">Unregister</h1>
 | |
|         <form action="/account/unregister/" method="POST" style="text-align:center;">
 | |
|             <label for="username">username</label>
 | |
|             <input type="text" name="username" id="username" placeholder="username" required>
 | |
|             <label for="password">password</label>
 | |
|             <input type="password" name="password" id="password" placeholder="password" required>
 | |
|             <br>
 | |
|             <button>Unregister</button>
 | |
|         </form>
 | |
|    </main> 
 | |
| </body>
 | |
| </html>
 |