Hopefuly fixed checks
This commit is contained in:
		@@ -10,7 +10,7 @@
 | 
			
		||||
    <h2>Login</h2>
 | 
			
		||||
    <form action="../login.php" method="post">
 | 
			
		||||
        <input type="email" name="email" id="email-field" placeholder="E-Mail" required>
 | 
			
		||||
        <input type="password" name="password" id="password-field" pattern="\w{8,128}" placeholder="Password" required>
 | 
			
		||||
        <input type="password" name="password" id="password-field" pattern=".{3,32}" placeholder="Password" required>
 | 
			
		||||
        <input type="submit" value="Login">
 | 
			
		||||
    </form>
 | 
			
		||||
</body>
 | 
			
		||||
 
 | 
			
		||||
@@ -9,9 +9,9 @@
 | 
			
		||||
<body>
 | 
			
		||||
    <h2>Register</h2>
 | 
			
		||||
    <form action="../register.php" method="post">
 | 
			
		||||
        <input type="text" name="username" id="username-field" pattern="\w{3,32}" placeholder="Username" required>
 | 
			
		||||
        <input type="text" name="username" id="username-field" pattern=".{3,32}" placeholder="Username" required>
 | 
			
		||||
        <input type="email" name="email" id="email-field" placeholder="E-Mail" required>
 | 
			
		||||
        <input type="password" name="password" id="password-field" pattern="\w{8,128}" placeholder="Password" required>
 | 
			
		||||
        <input type="password" name="password" id="password-field" pattern=".{8,128}" placeholder="Password" required>
 | 
			
		||||
        <input type="submit" value="Register">
 | 
			
		||||
    </form>
 | 
			
		||||
</body>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user