我正在尝试在我的应用程序中开发本地注册程序,以便用户能够在本地注册,并使用他的个人用户名和密码登录。
有人可以给我一个简单的例子我怎么能做到这一点?这意味着我如何在注册时存储本地用户名和密码输入,然后使用这些数据登录?
例如,这将是我的登录和注册 html 页面:
<body onload="init()">
<div id="loginPage" data-role="page">
<div data-role="header">
<h1>Registration/Login Demo</h1>
</div>
<div data-role="content">
<form id="loginForm">
<div data-role="fieldcontain" class="ui-hide-label">
<label for="username">Username:</label>
<input type="text" name="username" id="username" value="" placeholder="Username" />
</div>
<div data-role="fieldcontain" class="ui-hide-label">
<label for="password">Password:</label>
<input type="password" name="password" id="password" value="" placeholder="Password" />
</div>
<div data-role="fieldcontain" class="ui-hide-label">
<label for="password">Re-enter Password:</label>
<input type="password" name="password" id="password" value="" placeholder="Password" />
</div>
<input type="submit" value="Login" id="submitButton">
</form>
</div>
我如何构建我的 js 文件?
谢谢。