Hello! It's my first time scripting a UCP. Well what I gotta ask is, what should I do if wanted the error of invalid password to appear at the comment marked as // here.
PHP Code:
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>User control panel</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="login-page">
<div class="form">
<form class="login-form">
// here
<input type="text" placeholder="Username"/>
<input type="password" placeholder="Password"/>
<button><input type='submit' name="submit" value='Login' /> </button>
</form>
</div>
</div>
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>