45 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
<head>
 | 
						|
    <meta charset="UTF-8">
 | 
						|
    <title>Change Password</title>
 | 
						|
    <link rel="stylesheet" href="css/nav.css">
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
    <nav>
 | 
						|
        <ul>
 | 
						|
            <li><a href="search.html" class="btn">Search</a></li>
 | 
						|
            <li><a href="addVehicle.html" class="btn">Add new vehicle</a></li>
 | 
						|
            <li><a href="newReport.html" class="btn">Create new report</a></li>
 | 
						|
            <li class="admin"><a href="newUser.html" class="btn">Create new user</a></li>
 | 
						|
            <li class="admin"><a href="addFine.html" class="btn">Add Fines</a></li>
 | 
						|
            <li class="admin"><a href="viewLog.html" class="btn">View log</a></li>
 | 
						|
            <li><a href="changePassword.html" class="btn active">Change password</a></li>
 | 
						|
            <li><a id="logout" class="btn">Logout</a></li>
 | 
						|
        </ul>
 | 
						|
    </nav>
 | 
						|
 | 
						|
    <main>
 | 
						|
        <header id="title">
 | 
						|
            <h1></h1>
 | 
						|
        </header>
 | 
						|
 | 
						|
        <form method="POST" id="changePass">
 | 
						|
            <div class="formControl">
 | 
						|
                <label for="pass">Password</label>
 | 
						|
                <input type="password" name="pass" id="pass">
 | 
						|
            </div>
 | 
						|
 | 
						|
            <div class="formControl">
 | 
						|
                <label for="rePass">Retype Password</label>
 | 
						|
                <input type="password" name="rePass" id="rePass">
 | 
						|
            </div>
 | 
						|
 | 
						|
            <input type="submit" value="Change Password" class="btn btnPrimary">
 | 
						|
        </form>
 | 
						|
    </main>
 | 
						|
 | 
						|
    <script src="js/checkUser.js"></script>
 | 
						|
    <script src="js/changePassword.js"></script>
 | 
						|
</body>
 | 
						|
</html> |