Home > Web Front-end > JS Tutorial > body text

Javascrip operation login remember username and password

迷茫
Release: 2017-03-26 15:18:25
Original
1132 people have browsed it

Javascrip operation login remember username and password


 
  

@using (Html.BeginForm("Login", "Account", new { ReturnUrl = ViewBag.ReturnUrl }, FormMethod.Post)) { @Html.AntiForgeryToken() @Html.ValidationSummary(true)
账 号: @Html.ValidationMessageFor(m => m.UserAccount)
密 码: @Html.ValidationMessageFor(m => m.UserPassword)
记住用户名和密码
}

* 不要在公共场合保存登录信息;
* 为了保证您的帐号安全,退出系统时请注销登录

Copy after login


The above is the detailed content of Javascrip operation login remember username and password. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!