57 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			57 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
<head>
 | 
						|
    <meta charset="UTF-8">
 | 
						|
    <title>Create New User</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 active">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">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="createUser">
 | 
						|
            <div class="formControl">
 | 
						|
                <label for="username">Username</label>
 | 
						|
                <input type="text" name="username" id="username">
 | 
						|
            </div>
 | 
						|
 | 
						|
            <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>
 | 
						|
 | 
						|
            <div class="formControl">
 | 
						|
                <label for="isAdmin" class="checkContainer">Is Admin
 | 
						|
                    <input type="checkbox" name="isAdmin" id="isAdmin">
 | 
						|
                    <span class="checkmark"></span>
 | 
						|
                </label>
 | 
						|
            </div>
 | 
						|
 | 
						|
            <input type="submit" value="Create New User" class="btn btnPrimary" style="margin-top: 1em;">
 | 
						|
        </form>
 | 
						|
    </main>
 | 
						|
 | 
						|
    <script src="js/checkUser.js"></script>
 | 
						|
    <script src="js/newUser.js"></script>
 | 
						|
</body>
 | 
						|
</html> |