前端注册html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>美乐乐注册页面</title>
    <style>
        .top{
            background-color: gainsboro;
            height: 30px;
            /*float: top;*/
        }
        .shoucang{
            float: left;
            color: black;
            list-style: none;
            margin: 10px;
            /*width: 20px;*/
            /*width: 20px;*/
        }
        /*.denglu{*/
            /*float: right;*/
            /*width: 40%;*/

        /*}*/
        /*.zhuce{*/
            /*!*float: left;*!*/
            /*!*width: 70%;*!*/
            /*!*color: black;*!*/
            /*!*display:inline-block; width:150px; height:200px; border:1px solid #0a0*!*/
            /*float: right;*/
        /*}*/
        /*.kehu{*/
            /*width: 50%;*/
        /*}*/
        /*.vip{*/
            /*width: 60%;*/
        /*}*/

        #two,#three,#four,#five,#six{
            list-style: none;
            color: black;
            float: right;
            margin: 10px;
            /*width:75%;*/
            /*width:100px;*/
            /*padding: 10px;*/
        }
        .mod_copyright_info{
            text-align: center;
            font-size: 12px;
        }
        .header_id{
            /*margin:40px;*/
            width: 80%;
        }
        .Blok_info{
            margin:0 auto;
            width: 80%;
            height: 500px;
            border: 1px solid bisque;
        }
        .zuobian{
            float: left;
        }
        .youbian{
            float: right;
        }
    </style>
</head>
<body>
<div class="top">
    <ul >
        <li class="shoucang" id="one">*收藏本站</li>
    </ul>
    <ul>
        <a href="http://crm.oldboyedu.com/stu/" class="denglu" id="two">客户服务</a>
    </ul>
    <!--<div>-->
        <!--<a href="http://www.oldboyedu.com/shizi.php" class="zhuce">免费注册</a>-->
    <!--</div>-->
    <ul>
        <a href="http://www.oldboyedu.com/shizi.php" class="zhuce" id="three">vip俱乐部</a>
    </ul>
    <ul>
        <li class="dingdan" id="four">我的订单</li>
    </ul>
    <ul>
        <li class="vip" id="five">免费注册</li>
    </ul>
    <ul>
        <li class="kehu" id="six">登录</li>
    </ul>

    <!--<a href="http://crm.oldboyedu.com/stu/" class="shoucang">收藏本站</a>-->
</div>
<div class="header_id">
    <img src="mll_logo.gif" alt="公司logon走丢了">
</div>
<div class="Blok_info">
    <div class="zuobian">
        <div>
        <h1>注册新用户</h1>
        </div>
    <from action="" method="psot">
    <p>
        <label for="user">用户名:</label>
        <input type="text" name="username" id="user" tabindex="1" autocomplete="off" placeholder="用户名:">
    </p>

    <p>
        <label for="shoujihao">手机号:</label>
        <input type="text" name="shoujihao" id="shoujihao" tabindex="2" autocomplete="off" placeholder="手机号:">
    </p>
        <p>
            <label for="denglumima">登录密码</label>
            <input type="password" name="denglumima" id="denglumima" tabindex="3" autocomplete="off" placeholder="登录密码">
        </p>
        <p>
            <label for="querendenglumima">确认登录密码</label>
            <input type="password" name="querendenglumima" id="querendenglumima" tabindex="4" autocomplete="off" placeholder="确认登录密码">
        </p>
    <p>
        <label for="yanzhengma">验证码:</label>
        <input type="text" name="pwd" id="yanzhengma" tabindex="5" autocomplete="off" placeholder="验证码:">
    </p>
    <p>
        <input type="radio" value="" tabindex="6">我已阅读并同意<a href="http://crm.oldboyedu.com/stu/"><用户注册协议></a>
    </p>
    <p style="text-align: center" class="last">
        <a href="http://crm.oldboyedu.com/stu/">登&nbsp;&nbsp;&nbsp;&nbsp;录</a>
         <!--<input type="submit" value="登&nbsp;&nbsp;&nbsp;&nbsp;录" tabindex="4">-->
    </p>
        <!--<a href="http://www.oldboyedu.com/"  class="send"><b></b>免费注册</a>-->
    </from>

    </div>

    <div class="youbian">
        <div>
        我已经注册,现在就&nbsp;<a href="http://www.oldboyedu.com/">登录</a>
        </div>
         <div>
        <img src="hongbao.jpg" alt="此处已经有张红包大战的图片,没显示的话,可能是被打死了">
        </div>
    </div>

</div>
<div class="mod_copyright_info" >
    <p>
        <span>
            Copyright&nbsp;&Theta;&nbsp;2004&nbsp;-&nbsp;2015&nbsp;www.oldboyedu.com&nbsp;All Rights Reserved&nbsp;老男孩&nbsp;&copy;版权所有
        </span>
    </p>
</div>
</body>
</html>
时间: 2024-08-28 23:43:38

前端注册html的相关文章

前端注册验证码校验

1.      校验方式 输入后直接校验有好几种方式,之前一直再用的是onblur事件,当失去焦点是验证,但是注册码校验通常是最后一个表单输入,用户输入完直接点击提交,就会执行onblur事件,而不会执行提交事件,导致用户需要提交两次才能提交,用户体验感会相当差.现在替换成onkeyup事件,当用户的输入域中键入字符时,就立即触发事件. 2.      如下面代码一样 首先我们先定义一个flag状态 设置为false 和flag 提示内容.当我们触发事件时,我们使用document.getEle

简单前端注册表格

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" con

博客项目之前端开发—注册功能实现

1.前端注册功能实现 在service/user.js中增加reg注册函数  1 import axios from "axios" 2 import { observable } from "mobx"; 3 import store from 'store' 4 5 // 过期插件 6 store.addPlugin(require('store/plugins/expire')) 7 8 class UserService { 9 // 定义被观察对象 10

JSP+SpringMVC框架使用WebUploader插件实现注册时候头像图片的异步上传功能

一.去官网下载webuploader文件上传插件 https://fex.baidu.com/webuploader/ 下载好后把它放到Javaweb项目的文件夹中(我放到了webcontent下面的static里面) 二.复制前端的样式 把这段代码放到你想要放到的位置(刷新页面和示例中不一样?不用担心因为你还没有初始化{就是还没有导入swf文件},指定路径后刷新应该就好了) 三.复制实现文件异步上传的js代码(这里我们只复制图片上传的部分) js源码的中文是乱码,应该是缺少谷歌改编码格式的插件

project4电子邮局

www.extmail.net 本章目录: 1.电子邮局介绍(成员的组成及工作原理) 2.回顾分析第一阶段的邮局系统:        postfix(MTA smtp)+dovecot(pop3/imap)+squirrelmail(webmail)+apache+php+DNS 3.分析虚拟用户邮局系统:              postfix(MTA+maildrop+(MDA)couier-imap(MUA)+courier-authlib+apache(extmail/exman)+m

群发消息

群发消息 一.前言 ASP .NET SignalR 是一个ASP .NET 下的类库,可以在ASP .NET 的Web项目中实现实时通信.什么是实时通信的Web呢?就是让客户端(Web页面)和服务器端可以互相通知消息及调用方法,当然这是实时操作的. WebSockets是HTML5提供的新的API,可以在Web网页与服务器端间建立Socket连接,当WebSockets可用时(即浏览器支持Html5)SignalR使用WebSockets,当不支持时SignalR将使用其它技术来保证达到相同效

SignalR2.0开发实例之——群发消息

一.前言 ASP .NET SignalR 是一个ASP .NET 下的类库,可以在ASP .NET 的Web项目中实现实时通信.什么是实时通信的Web呢?就是让客户端(Web页面)和服务器端可以互相通知消息及调用方法,当然这是实时操作的. WebSockets是HTML5提供的新的API,可以在Web网页与服务器端间建立Socket连接,当WebSockets可用时(即浏览器支持Html5)SignalR使用WebSockets,当不支持时SignalR将使用其它技术来保证达到相同效果. Si

Shopnc 版权修改及招商入驻提交表单修改

最近在研究shopnc商城系统,偶尔蛋疼的在研究前端用户体验,果不其然,发现用户转入驻为商家环节异常复杂,系统原始目地是好的.但对于用户商家来说,提供如此复杂详细的资料,确实有些不妥,好吧,解决问题先,看我怎么把它干掉. 吐槽一下:已有几个月的时间没有接触代码这块,起初修改起来有些吃不消,完全没有思路,甚至简单的注释标签都使用错误了.以前对shopex商城系统相对比较了解,知道每个文件存在的路径,同样是PHP语言开发的,所以路径上相差不会太大,这个标准确实让程序员省事了不少. 一.如何修改sho

【初码干货】使用阿里云邮件推送服务架设自己邮件验证与推送体系

提示:阅读本文需提前了解的相关知识 1.电子邮件协议(http://baike.baidu.com/view/2367542.htm) 2.阿里云邮件推送(https://www.aliyun.com/product/directmail) 3.EDM(电子邮件营销)(http://baike.baidu.com/subview/1212416/8602812.htm) 4.SendCloud邮件服务(http://sendcloud.sohu.com/) 阅读目录结构 引: 一.需求分析 二.