一个简洁的ajax注册登录找回密码切换的前端页面

成功和失败不同颜色显示,纯原生代码不需要jq等第三方插件 

<%@ Language="VBScript" CodePage="65001"%>
<%
Response.Charset = "UTF-8"
Session.CodePage = "65001"
Response.Addheader "Content-Type","text/html; charset=utf-8"
'On Error Resume Next
if Request("act")<>"" then
if Request("act")="login" then
username = Request.Form("username")
password = Request.Form("password")
If username = "testuser" And password = "testpassword" Then '账号密码看这里
response.ContentType = "application/json"
response.Write "{ ""success"": true, ""message"": ""登录成功"" }"
Else
response.ContentType = "application/json"
response.Write "{ ""success"": false, ""message"": ""用户名或密码错误"" }"
End If
end if
if Request("act")="register" then
username = Request.Form("username")
password = Request.Form("password")
' 模拟注册逻辑,这里简单返回成功(实际中要插入数据到真实数据库等操作)
response.ContentType = "application/json"
response.Write "{ ""success"": true, ""message"": ""注册成功"" }"
end if
if Request("act")="forgot-password" then
username = Request.Form("username")
email = Request.Form("email")
' 模拟找回密码逻辑,这里简单返回成功(实际中可能涉及发送邮件等复杂操作)
response.ContentType = "application/json"
response.Write "{ ""success"": true, ""message"": ""找回密码邮件已发送,请查收"" }"
end if
response.End
end if
%>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>注册登录找回密码页面</title>
<style>
.page-container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #f4f4f4;
}
/* 切换按钮样式 */
.tab-container {
display: flex;
justify-content: space-around;
width: 300px;
margin-bottom: -3px;
}
.tab {
padding: 10px;
border: 1px solid #3499d9;
background-color: #3499d9;
cursor: pointer;
}
.tab.active {
background-color: #0180cf;
color: white;
}
/* 内容区域通用样式 */
.content-container {
width: 300px;
background-color: white;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
border-radius: 5px;
padding: 20px;
}
.section {
display: none;
}
.section.active {
display: block;
}
/* 输入框样式 */
input {
width: 100%;
padding: 10px 0;
margin-bottom: 15px;
border: 1px solid #3499d9;
border-radius: 5px;
}
/* 按钮样式 */
button {
width: 100%;
padding: 10px;
background-color: #0180cf;
color: white;
border: 1px solid #0180cf;
border-radius: 5px;
cursor: pointer;
}
/* 错误消息样式 */
.error-message {
color: white;
padding: 10px;
margin-top: 10px;
border-radius: 5px;
}
.error-message.red {
background-color: red;
}
.error-message.blue {
background-color: green;
}
</style>
<script>
// 页面加载完成后执行
window.onload = function () {
// 获取所有切换按钮
const tabs = document.querySelectorAll('.tab');
// 获取所有内容区域
const sections = document.querySelectorAll('.section');
// 给切换按钮添加点击事件
tabs.forEach(tab => {
tab.addEventListener('click', function () {
// 移除所有按钮的active类
tabs.forEach(t => t.classList.remove('active'));
// 给当前点击的按钮添加active类
this.classList.add('active');
// 隐藏所有内容区域
sections.forEach(section => section.classList.remove('active'));
// 显示对应目标的内容区域
const targetId = this.dataset.target;
const targetSection = document.getElementById(targetId);
targetSection.classList.add('active');
});
});
// 获取登录按钮并添加点击事件
const loginButton = document.getElementById('login-button');
loginButton.addEventListener('click', function () {
const username = document.getElementById('login-username').value;
const password = document.getElementById('login-password').value;
// 创建Ajax请求对象(这里使用XMLHttpRequest,现代项目也可考虑使用fetch API)
const xhr = new XMLHttpRequest();
xhr.open('POST', '?act=login', true);
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
xhr.onreadystatechange = function () {
if (xhr.readyState === 4 && xhr.status === 200) {
const response = JSON.parse(xhr.responseText);
if (response.success) {
//window.location.href = 'index.html';
const errorMessageDiv = document.getElementById('login-error-message');
errorMessageDiv.textContent = response.message;
errorMessageDiv.classList.add('blue');
} else {
// 显示错误消息,红色背景白色字
const errorMessageDiv = document.getElementById('login-error-message');
errorMessageDiv.textContent = response.message;
errorMessageDiv.classList.add('red');
}
}
};
// 发送请求数据,根据后端接收参数格式调整
xhr.send(`username=${username}&password=${password}`);
});
// 获取注册按钮并添加点击事件
const registerButton = document.getElementById('register-button');
registerButton.addEventListener('click', function () {
const username = document.getElementById('register-username').value;
const password = document.getElementById('register-password').value;
const confirmPassword = document.getElementById('register-confirm-password').value;
// 简单验证密码是否一致,实际中可加强验证逻辑
if (password!== confirmPassword) {
const errorMessageDiv = document.getElementById('register-error-message');
errorMessageDiv.textContent = '两次密码不一致';
errorMessageDiv.classList.add('red');
return;
}
// 创建Ajax请求对象
const xhr = new XMLHttpRequest();
xhr.open('POST', '?act=register', true);
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
xhr.onreadystatechange = function () {
if (xhr.readyState === 4 && xhr.status === 200) {
const response = JSON.parse(xhr.responseText);
if (response.success) {
// 注册成功,显示蓝色背景白色字提示
const errorMessageDiv = document.getElementById('register-error-message');
errorMessageDiv.textContent = response.message;
errorMessageDiv.classList.add('blue');
} else {
// 显示错误消息,红色背景白色字
const errorMessageDiv = document.getElementById('register-error-message');
errorMessageDiv.textContent = response.message;
errorMessageDiv.classList.add('red');
}
}
};
// 发送请求数据
xhr.send(`username=${username}&password=${password}`);
});
// 获取找回密码按钮并添加点击事件
const forgotButton = document.getElementById('forgot-button');
forgotButton.addEventListener('click', function () {
const username = document.getElementById('forgot-username').value;
const email = document.getElementById('forgot-email').value;
// 创建Ajax请求对象
const xhr = new XMLHttpRequest();
xhr.open('POST', '?act=forgot-password', true);
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
xhr.onreadystatechange = function () {
if (xhr.readyState === 4 && xhr.status === 200) {
const response = JSON.parse(xhr.responseText);
if (response.success) {
// 找回密码成功,显示蓝色背景白色字提示
const errorMessageDiv = document.getElementById('forgot-error-message');
errorMessageDiv.textContent = response.message;
errorMessageDiv.classList.add('blue');
} else {
// 显示错误消息,红色背景白色字
const errorMessageDiv = document.getElementById('forgot-error-message');
errorMessageDiv.textContent = response.message;
errorMessageDiv.classList.add('red');
}
}
};
// 发送请求数据
xhr.send(`username=${username}&email=${email}`);
});
};
</script>
</head>
<body>
<div class="page-container">
<div class="tab-container">
<button class="tab active" data-target="login-section">登录</button>
<button class="tab" data-target="register-section">注册</button>
<button class="tab" data-target="forgot-password-section">找回密码</button>
</div>
<div class="content-container">
<!-- 登录部分 -->
<div class="section active" id="login-section">
<h2>登录</h2>
<input type="text" id="login-username" placeholder="用户名">
<input type="password" id="login-password" placeholder="密码">
<button id="login-button">登录</button>
<div id="login-error-message" class="error-message"></div>
</div>
<!-- 注册部分 -->
<div class="section" id="register-section" style="display: ;">
<h2>注册</h2>
<input type="text" id="register-username" placeholder="用户名">
<input type="password" id="register-password" placeholder="密码">
<input type="password" id="register-confirm-password" placeholder="确认密码">
<button id="register-button">注册</button>
<div id="register-error-message" class="error-message"></div>
</div>
<!-- 找回密码部分 -->
<div class="section" id="forgot-password-section" style="display: ;">
<h2>找回密码</h2>
<input type="text" id="forgot-username" placeholder="用户名">
<input type="email" id="forgot-email" placeholder="邮箱地址">
<button id="forgot-button">找回密码</button>
<div id="forgot-error-message" class="error-message"></div>
</div>
</div>
</div>
</body>
</html>

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/pingmian/62355.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

uniapp首页样式,实现菜单导航结构

实现菜单导航结构 1.导入字体图标库需要的文件 2.修改引用路径iconfont.css 3.导入到App.vue中 <style>import url(./static/font/iconfont.css); </style>导航区域代码 VUE代码 <template><view class"home"><!-- 导航区域 --><…

深入解析 PyTorch 的 torch.load() 函数:用法、参数与实际应用示例

深入解析 PyTorch 的 torch.load() 函数&#xff1a;用法、参数与实际应用示例 函数 torch.load() 是一个在PyTorch中用于加载通过 torch.save() 保存的序列化对象的核心功能。这个函数广泛应用于加载预训练模型、模型的状态字典&#xff08;state dictionaries&#xff09;、…

Web开发基础学习——axios的理解

Web开发基础学习系列文章目录 第一章 基础知识学习之axios的理解 文章目录 Web开发基础学习系列文章目录前言一、使用方法1.1 安装 axios&#xff1a;1.2 在前端代码中使用 axios&#xff1a; 总结 前言 Axios 是一个基于 Promise 的 HTTP 客户端&#xff0c;用于在浏览器和 …

FileReader和 FileWriter

FileReader和FileWriter是用于操作文件的类&#xff0c;它们分别用于读取和写入数据。下面是它们的一些基本用法&#xff1a; FileReader&#xff1a; 创建一个FileReader对象&#xff0c;指定要读取的文件路径。使用read()方法读取文件的内容&#xff0c;返回一个整数字符表…

FreeRTOS posix 实现低功耗tickless

文章目录 打印重定向FreeRTOSConfig.h 配置portmacro.h 实现低功耗流程vPortSuppressTicksAndSleep 实现测试效果注意事项 打印重定向 为了观察睡眠时间&#xff0c;重定向打印函数&#xff0c;打印的时候将时间戳打印出来&#xff0c;实现如下 #define printf(fmt, ...) …

解析客服知识库搭建的五个必要性

在当今竞争激烈的商业环境中&#xff0c;客服知识库的搭建已成为企业提升服务质量、优化客户体验的重要手段。一个完善的客服知识库不仅能帮助企业高效管理客户服务流程&#xff0c;还能显著提升客户满意度和忠诚度。以下是搭建客服知识库的五个必要性&#xff1a; 1. 提升服务…

淘宝Vision Pro:革新购物体验的沉浸式未来

引言 简要介绍淘宝Vision Pro版的背景,包括它在美区AppStore的发布及WWDC上的展示。阐述本文的目的:为读者提供一个全面的功能概览与设计背后的思考。设计原则 列出并简要解释5条设计原则(熟悉、直观、真实、实用、易用)。说明这些原则如何指导整个产品设计过程。核心功能详…

网站怎么防御https攻击

HTTPS攻击&#xff0c;它不仅威胁到网站的数据安全&#xff0c;还可能影响用户隐私和业务稳定运行。 HTTPS攻击主要分为以下几种类型&#xff1a; 1.SSL劫持&#xff1a;攻击者通过中间人攻击手段&#xff0c;篡改HTTPS流量&#xff0c;从而实现对数据的窃取或伪造。 2.中间人攻…

【从0学英语】 04.句型 - 英语句子的骨架

在学习英语的过程中&#xff0c;句型就像建筑的骨架一样&#xff0c;是构建完整句子的基础。俗话说&#xff0c;万变不离其宗&#xff0c;即使英语句子千变万化&#xff0c;也离不开几种基本的句型结构。本节内容将从零开始&#xff0c;带您逐步了解英语句子的五种核心骨架&…

【CSS in Depth 2 精译_062】第 10 章 CSS 中的容器查询(@container)概述 + 10.1 容器查询的一个简单示例

当前内容所在位置&#xff08;可进入专栏查看其他译好的章节内容&#xff09; 【第十章 CSS 容器查询】 ✔️ 10.1 容器查询的一个简单示例 ✔️ 10.1.1 容器尺寸查询的用法 ✔️ 10.2 深入理解容器10.3 与容器相关的单位10.4 容器样式查询的用法10.5 本章小结 文章目录 第 10…

openjdk17 jvm 对象 内存溢出 在C++源码体现

##java大对象类 public class MiBigObject {private String f1;private String f2;private String f3;private String f4;private String f5;private String f6;private String f7;private String f8;private String f9;private String f10;private String f11;private String…

HCIE:详解OSPF,从基础到高级特性再到深入研究

目录 前言 一、OSPF协议基本原理 简介 基本原理 OSPF路由器类型 OSPF网络类型 OSPF报文类型和封装 OSPF邻居的建立的维护 DR和BDR的选举 伪节点 LSDB的更新 OSPF的配置 二、OSPF的高级特性 虚连接&#xff08;Virtual-Link&#xff09; OSPF的LSA和路由选择 OSPF…

C++算法练习-day45——236.二叉树的最近公共祖先

题目来源&#xff1a;. - 力扣&#xff08;LeetCode&#xff09; 题目思路分析 题目要求在一个二叉树中找到两个给定节点的最低公共祖先&#xff08;Lowest Common Ancestor, LCA&#xff09;。最低公共祖先是指在树中同时包含两个给定节点的所有节点中&#xff0c;深度最大的…

think php处理 异步 url 请求 记录

1、需求 某网站 需要 AI生成音乐&#xff0c;生成mp3文件的时候需要等待&#xff0c;需要程序中实时监听mp3文件是否生成 2、用的开发框架 为php 3、文件结构 配置路由设置 Route::group(/music, function () {Route::post(/musicLyrics, AiMusic/musicLyrics);//Ai生成歌词流式…

【VRChat 改模】开发环境搭建:VCC、VRChat SDK、Unity 等环境配置

一、配置 Unity 相关 1.下载 UnityHub 下载地址&#xff1a;https://unity.com/download 安装打开后如图所示&#xff1a; 2.下载 VRChat 官方推荐版本的 Unity 跳转界面&#xff08;VRChat 官方推荐页面&#xff09;&#xff1a;https://creators.vrchat.com/sdk/upgrade/…

AJAX 实时搜索

AJAX 实时搜索 AJAX&#xff08;Asynchronous JavaScript and XML&#xff09;实时搜索是一种无需刷新整个网页就能从服务器获取数据并在网页上展示的技术。这种技术极大地提升了用户体验&#xff0c;尤其是在搜索引擎、在线购物网站、社交媒体平台等应用中。本文将详细介绍AJ…

ollama部署bge-m3,并实现与dify平台对接

概述 这几天为了写技术博客,各种组件可谓是装了卸,卸了装,只想复现一些东西,确保你们看到的东西都是可以复现的。 (看在我这么认真的份上,求个关注啊,拜托各位观众老爷了。) 这不,为了实验在windows上docker里运行pytorch,把docker重装了。 dify也得重装: Dify基…

详细介绍HTTP与RPC:为什么有了HTTP,还需要RPC?

目录 一、HTTP 二、RPC 介绍 工作原理 核心功能 如何服务寻址 如何进行序列化和反序列化 如何网络传输 基于 TCP 协议的 RPC 调用 基于 HTTP 协议的 RPC 调用 实现方式 优点和缺点 使用场景 常见框架 示例 三、问题 问题一&#xff1a;是先有HTTP还是先有RPC&…

Paddle Inference部署推理(十五)

十五&#xff1a;Paddle Inference推理 &#xff08;python&#xff09;API详解 枚举类型 DataType DataType 定义了 Tensor 的数据类型&#xff0c;由传入 Tensor 的 numpy 数组类型确定。 # DataType 枚举定义 class paddle.inference.DataType:# 获取各个 DataType 对应…

blender 视频背景

准备视频文件 首先&#xff0c;确保你有想要用作背景的视频文件。视频格式最好是 Blender 能够很好兼容的&#xff0c;如 MP4 等常见格式。 创建一个新的 Blender 场景或打开现有场景 打开 Blender 软件后&#xff0c;你可以新建一个场景&#xff08;通过点击 “文件” - “新建…