car_deal_util/code/web/car_dealer/login.html

62 lines
2.0 KiB
HTML
Raw Normal View History

2022-10-11 17:15:31 +00:00
<!--
* @Author: Kane
* @Date: 2022-10-11 23:19:28
* @LastEditors: Kane
2022-10-12 09:58:40 +00:00
* @LastEditTime: 2022-10-12 17:37:14
2022-10-11 17:15:31 +00:00
* @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>
2022-10-12 09:58:40 +00:00
<link href="css/fonts.css" rel="stylesheet" />
2022-10-11 17:15:31 +00:00
<link rel="stylesheet" href="css/root.css" />
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/login.css" />
2022-10-12 07:39:37 +00:00
<script src="https://kit.fontawesome.com/a81368914c.js"></script>
2022-10-11 17:15:31 +00:00
</head>
<body>
<div class="dash_box">
<div class="title_box">
2022-10-12 07:39:37 +00:00
<!-- <h1>车商渠道</h1> -->
2022-10-11 17:15:31 +00:00
</div>
</div>
2022-10-12 07:39:37 +00:00
<div class="login_box">
2022-10-12 09:58:40 +00:00
<form>
2022-10-12 07:39:37 +00:00
<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>
2022-10-11 17:15:31 +00:00
</body>
</html>