I want to add disallow user to submit form if the user input contains 'xyz.co.in' in the input fields but this should be done with html5 pattern, I do not want to do it with jquery or javacript. Can anyone please help me with what should be its respective pattern, I mean what should go in pattern field in <input type='text' pattern='<some pattern goes here>'/>
So that user can insert anything in the input field except xyz.co.in.
UPDATE
Here is what I have so far:
<!doctype html>
<html>
<head>
<title>disallow a pattern</title>
</head>
<body>
<form action="" >
<input type="text" pattern="^(?!.*\bxyz\.co\.in\b)" />
<input type="submit" name="Go1" value="Go"/>
</form>
</body>
</html>