zoukankan      html  css  js  c++  java
  • html5_d登陆界面_注册界面

    <!DOCTYPE html>
    <html>
    <head>
    <script type="text/javascript">
    function validate()
    {
    var username=document.getElementById("username").value
    var passward=document.getElementById("password").value

    }
    /*
    function onclick()
    {
    <a href="second.html" />
    }

    function clickNextPage(){
    window.location.reload("second.html");
    }
    document.getElementById('nextPage').addEventListener("click",clickNextPage);
    */
    </script>

    <style>
    div
    {
    border:1px solid black;
    padding: 35;

    240px;
    height:100px;

    background:green;
    position:relative;

    -webkit-transition-duration:1s;
    -webkit-animation:myfirst 5s linear 2s infinite alternate;
    <!-- box-shadow: 10px 10px 5px #888888 -->
    }

    div:hover{
    -webkit-transform:duration(2s);
    -webkit-transform:rotate(180deg);
    }
    </style>

    </head>
    <label>hahah</label>
    <body>

    <div>
    <form align="center">
    UserName:<input type="text" name="UserName" id="username"/>
    <br>
    Password: <input type="password" name="password" id="password" />
    </form>
    </div>
    <form >
    <input type="submit" value="Login" id="login" />
    <input type="button" value="signup" onClick="window.open('second.html');" />
    <!--<button id="nextPage"> Singup </button>-->
    </form>
    </body>
    </html>

    <!DOCTYPE html>
    <html>
    <head>
    <script type="text/javascript">
    function validate()
    {
    var username=document.getElementById("username").value
    var passward=document.getElementById("password").value

    }
    </script>
    <style>
    div
    {
    border:1px solid black;
    padding: 35;
    240px;
    height:300px;
    background:red;
    box-shadow: 10px 10px 5px #888888
    }

    }
    </style>
    </head>
    <label>hahah</label>
    <body>

    <div>
    <form align="right">
    UserName:<input type="text" name="UserName" id="username"/>
    <br>
    Email: <input type="email" name="Email" id="email" />
    <br>
    Password:<input type=“password” name="Password" id="password">
    <br>
    Mobil:<input type="Mobil" name="Mobil" id="mobil">
    <br>
    </form>
    </div>
    <form action="/example/hdom/hdom_submitpage.html" onsubmit="return validate()">
    <input type="submit" value="Login" id="login" />
    <input type="submit" value="signup" id=""signup/>
    </form>
    </body>
    </html>

  • 相关阅读:
    2-字符串篇(4)
    1-数组篇(2)
    Neo4j-电影图(演员与电影之间的流行文化联系)
    NLP(相关资料)
    Oracle中的rank()函数使用
    PostgreSQL入门
    风格迁移论文理解--A Neural Algorithm of Artistic Style
    【Math】复数表示和傅里叶变换
    github资源使用--程序员必备
    【TF-2-3】Tensorflow-可视化(TensorBoard)
  • 原文地址:https://www.cnblogs.com/wjw-blog/p/4805667.html
Copyright © 2011-2022 走看看