jqwidgets-scripts-custom
Version:
jQWidgets is an advanced jQuery, Angular 7, Vue, React, ASP .NET MVC, Custom Elements and HTML5 UI framework.
138 lines (131 loc) • 5.17 kB
HTML
<html>
<head>
<title id="Description">This demo illustrates the default functionality of the jqxPasswordInput widget. TypeScript example.</title>
<!-- 1. Load references -->
<link rel="stylesheet" href="../../../jqwidgets/styles/jqx.base.css" type="text/css" />
<script src="../../../scripts/jquery-1.11.1.min.js"></script>
<script src="../../../scripts/demos.js"></script>
<script src="../../../jqwidgets/jqxcore.js"></script>
<script src="../../../jqwidgets/jqxpasswordinput.js"></script>
<script src="../../../jqwidgets/jqxinput.js"></script>
<script src="../../../jqwidgets/jqxdatetimeinput.js"></script>
<script src="../../../jqwidgets/jqxcalendar.js"></script>
<script src="../../../jqwidgets/jqxtooltip.js"></script>
<script src="../../../jqwidgets/globalization/globalize.js"></script>
<script src="../../../jqwidgets/jqxbuttons.js"></script>
<script src="../../../jqwidgets/jqxscrollbar.js"></script>
<script src="../../../jqwidgets/jqxlistbox.js"></script>
<script src="../../../jqwidgets/jqxdropdownlist.js"></script>
<script src="../../../jqwidgets/jqxexpander.js"></script>
<script src="../../../jqwidgets/jqxvalidator.js"></script>
<script src="typescript-passwordinput.js"></script>
<script type="text/javascript" src="../../../scripts/demos.js"></script>
<!-- 2. Create initialization -->
<script>
$(document).ready(function () {
createForm(
'#createAccount',
'#firstName', '#lastName', '#userName',
'#password', '#passwordConfirm',
'#birthday', '#gender',
'#submit', '#form'
);
});
</script>
</head>
<!-- 3. Display the application -->
<body>
<div class="example-description">
This demo illustrates the default functionality of the jqxPasswordInput widget. TypeScript example.
</div>
<div id="createAccount" style="font-family: Verdana; font-size: 13px;">
<div>
Create a new account
</div>
<div style="font-family: Verdana; font-size: 13px;">
<form id="form" style="overflow: hidden; margin: 10px;" action="./">
<table>
<tr>
<td colspan="2">
First Name
</td>
</tr>
<tr>
<td>
<input id="firstName" />
</td>
</tr>
<tr>
<td colspan="2">
Last Name
</td>
</tr>
<tr>
<td>
<input id="lastName" />
</td>
</tr>
<tr>
<td colspan="2">
Choose your username
</td>
</tr>
<tr>
<td colspan="2">
<input id="userName" />
</td>
</tr>
<tr>
<td colspan="2">
Create a password
</td>
</tr>
<tr>
<td colspan="2">
<input id="password" type="password" />
</td>
</tr>
<tr>
<td colspan="2">
Confirm your password
</td>
</tr>
<tr>
<td colspan="2">
<input id="passwordConfirm" type="password" />
</td>
</tr>
<tr>
<td colspan="2">
Birthday
</td>
</tr>
<tr>
<td colspan="2">
<div id="birthday">
</div>
</td>
</tr>
<tr>
<td colspan="2">
Gender
</td>
</tr>
<tr>
<td colspan="2">
<div id="gender">
</div>
</td>
</tr>
<tr>
<td colspan="2">
<input id="submit" type="button" value="Create account" />
</td>
</tr>
</table>
</form>
</div>
</div>
</body>
</html>