script/mvcar/index.html

34 lines
1.1 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>挪车电话查询</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<div class="header">
<h1>挪车电话查询</h1>
<p>请输入车牌号码查询车主联系方式</p>
</div>
<div class="content">
<div class="search-section">
<h2>车牌号码查询</h2>
<div class="input-group">
<input type="text" class="license-input" id="licensePlate" placeholder="请输入车牌号码例如粤A12345">
</div>
<button class="search-button" id="searchButton">查询</button>
<div class="error-message" id="errorMessage"></div>
</div>
</div>
</div>
<div class="footer">
<p>挪车电话服务 © kiki.kim</p>
</div>
<script src="js/script.js"></script>
</body>
</html>