62 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!--
 | 
						|
 * @Author: Kane
 | 
						|
 * @Date: 2022-10-11 23:19:28
 | 
						|
 * @LastEditors: Kane
 | 
						|
 * @LastEditTime: 2022-10-12 17:37:14
 | 
						|
 * @FilePath: \car_dealer\login.html
 | 
						|
 * @Description: 
 | 
						|
 * 
 | 
						|
 * Copyright (c) ${2022} by Kane, All Rights Reserved. 
 | 
						|
-->
 | 
						|
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
    <head>
 | 
						|
        <meta charset="UTF-8" />
 | 
						|
        <meta http-equiv="X-UA-Compatible" content="IE=edge" />
 | 
						|
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
 | 
						|
        <title>登录</title>
 | 
						|
        <link href="css/fonts.css" rel="stylesheet" />
 | 
						|
        <link rel="stylesheet" href="css/root.css" />
 | 
						|
        <link rel="stylesheet" href="css/normalize.css" />
 | 
						|
        <link rel="stylesheet" href="css/login.css" />
 | 
						|
        <script src="https://kit.fontawesome.com/a81368914c.js"></script>
 | 
						|
    </head>
 | 
						|
    <body>
 | 
						|
        <div class="dash_box">
 | 
						|
            <div class="title_box">
 | 
						|
                <!-- <h1>车商渠道</h1> -->
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
        <div class="login_box">
 | 
						|
            <form>
 | 
						|
                <img src="img/login/avatar.svg" alt="" />
 | 
						|
                <h2>欢迎</h2>
 | 
						|
                <div class="input-div user">
 | 
						|
                    <div class="i">
 | 
						|
                        <i class="fas fa-user"></i>
 | 
						|
                    </div>
 | 
						|
                    <div>
 | 
						|
                        <!-- <h5>用户名</h5> -->
 | 
						|
                        <input type="text" placeholder="用户名" />
 | 
						|
                    </div>
 | 
						|
                </div>
 | 
						|
                <div class="input-div user">
 | 
						|
                    <div class="i">
 | 
						|
                        <i class="fa fa-lock"></i>
 | 
						|
                    </div>
 | 
						|
                    <div>
 | 
						|
                        <!-- <h5>密码</h5> -->
 | 
						|
                        <input
 | 
						|
                            type="password"
 | 
						|
                            name=""
 | 
						|
                            id=""
 | 
						|
                            placeholder="密码"
 | 
						|
                        />
 | 
						|
                    </div>
 | 
						|
                </div>
 | 
						|
                <button class="btn_login">登录</button>
 | 
						|
            </form>
 | 
						|
        </div>
 | 
						|
    </body>
 | 
						|
</html>
 |