Create login form with required
Description
The following code shows how to create login form with required.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.8.3.js'></script>
<script type="text/javascript"
src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.js"></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.css">
</head><!-- www . j av a 2 s .co m-->
<body>
<form id="my_form">
<input type="text" id="username" placeholder="User" required />
<input type="password" id="userpsw" placeholder="Password" required />
<input class="submit" type="submit" value="Login" />
</form>
</body>
</html>