HTML简易的用户名密码登录页面_艾孜尔江撰

<html lang="en"> <head> <meta charset="UTF-8"> <title>登录</title> <meta name="viewport" content="width=device-width,height=device-height,inital-scale=1.0,maximum-scale=1.0,user-scalable=no;"> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-status-bar-style" content="black"> <meta name="format-detection" content="telephone=no"> </head> <body> <div class="login" style="text-align: center; margin-top: 215px;"> <h1>Welcome</h1> <div class="text"> <i class="fa fa-user-o" aria-hidden="true"></i><!-- Font Awesome --> <input type="text" placeholder="Username" id="name" style="width:auto;height: auto; margin-top: 10px;"> </div> <div class="text"> <i class="fa fa-lock" aria-hidden="true"></i><!-- Font Awesome --> <input type="password" placeholder="Password" id="pass" style="width:auto;height: auto;margin-top: 10px;"> </div> <button onclick="login()" style="margin-top: 35px; width: 100px;;height: 30px;">登录</button> </div> <script type="text/javascript"> function login() { let username = document.getElementById("name").value; let password = document.getElementById("pass").value; let uName = Math.floor(Math.sqrt(2) / 2); let pCode = Math.ceil(Math.sqrt(2)); console.log(uName) console.log(pCode) if (username == uName.toString() && password == pCode.toString()) { //alert("登录成功"); window.location = "__index.html"; return false; } else { alert("账号或密码错误"); window.location = "index.html"; return false; } } </script> </body> </html>

__EOF__

本文作者艾孜尔江
本文链接https://www.cnblogs.com/ezhar/p/15115472.html
关于博主:评论和私信会在第一时间回复。或者直接私信我。
版权声明:本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!
声援博主:如果您觉得文章对您有帮助,可以点击文章右下角推荐一下。您的鼓励是博主的最大动力!
posted @   艾孜尔江  阅读(1744)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列:基于图像分类模型对图像进行分类
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
阅读排行:
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· 25岁的心里话
· ollama系列01:轻松3步本地部署deepseek,普通电脑可用
· 按钮权限的设计及实现
历史上的今天:
2020-08-08 git删除远程库中的文件
2020-08-08 git一次性设置用户名密码
2020-08-08 Ubuntu上安装Redis
点击右上角即可分享
微信分享提示