regist.html 3.95 KB
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">

<head>
    <meta charset="UTF-8">
    <title>注册</title>
    <style>
        * {
            margin: 0;
            padding: 0;
        }

        html {
            height: 100%;
            width: 100%;
            overflow: hidden;
            margin: 0;
            padding: 0;
            background: url(img/bg.png) no-repeat 0px 0px;
            background-repeat: no-repeat;
            background-size: 100% 100%;
            -moz-background-size: 100% 100%;
        }

        body {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
        }

        #loginDiv {
            width: 37%;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 650px;
            background-color: rgba(75, 81, 95, 0.3);
            box-shadow: 7px 7px 17px rgba(52, 56, 66, 0.5);
            border-radius: 5px;
        }

        #name_trip {
            margin-left: 50px;
            color: red;
        }

        p,
        .sexDiv {
            margin-top: 10px;
            margin-left: 20px;
            color: azure;
        }

        .sexDiv>input,
        .hobby>input {
            width: 30px;
            height: 17px;
        }

        input,
        select {
            margin-left: 15px;
            border-radius: 5px;
            border-style: hidden;
            height: 30px;
            width: 140px;
            background-color: rgba(216, 191, 216, 0.5);
            outline: none;
            color: #f0edf3;
            padding-left: 10px;
        }

        .button {
            border-color: cornsilk;
            background-color: rgba(100, 149, 237, .7);
            color: aliceblue;
            border-style: hidden;
            border-radius: 5px;
            width: 100px;
            height: 31px;
            font-size: 16px;
        }

        .introduce {
            margin-left: 110px;
        }

        .introduce>textarea {
            background-color: rgba(216, 191, 216, 0.5);
            border-style: hidden;
            outline: none;
            border-radius: 5px;
        }

        h1 {
            text-align: center;
            margin-bottom: 20px;
            margin-top: 20px;
            color: #f0edf3;
        }

        b {
            margin-left: 50px;
            color: #FFEB3B;
            font-size: 10px;
            font-weight: initial;
        }
    </style>
</head>

<body>
<div id="loginDiv">
    <form th:action="@{/user/register}">
        <h1>用户注册</h1>
        <div style="text-align: center;margin-top:5px" >
            <a th:href="@{/login}">已注册?登录</a>
        </div>
        <p>用户名 :<input id="usernname" type="text" name="username" autofocus required>

        <p>&nbsp;&nbsp;码:<input id="password" type="password" name="password" required>

        <p>真实姓名:<input id="realname" type="text" name="realname" required>


        <div class="sexDiv">
            用户性别:
            <input class="userSex" name="gender" value="1" type="radio">
            <input class="userSex" name="gender" value="0" type="radio">

        </div>

        <p>
            出生日期:
            <input id="birthday" type="date">

        </p>
        <p><img th:src="@{/user/generateImageCode}" id="imgcode">
            <a href="javascript:;" onclick="changeImageCode()">换一张</a>
            <script>
                function changeImageCode(){
                    document.querySelector('#imgcode').src='[[@{/user/generateImageCode}]]?'+(new Date()).getTime()
                }
            </script>
        </p>

        <p> 验证码:
            <input type="text" name="code"/>
        </p>
        <p style="text-align: center;">
            <input type="submit" class="button" value="提交">
            <input type="reset" class="button" value="重置">
        </p>
    </form>

</div>

</body>

</html>