34 lines
729 B
HTML
34 lines
729 B
HTML
![]() |
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8"/>
|
||
|
<link rel="icon" type="image/svg+xml" href="favicon.svg"/>
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||
|
<title>Tailwind + Sass</title>
|
||
|
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<div class="topBar">
|
||
|
用户注册
|
||
|
</div>
|
||
|
|
||
|
<div class="m-2 space-y-4">
|
||
|
<div>手机号码: <input type="tel" placeholder="手机号码"
|
||
|
/></div>
|
||
|
<div>密码: <input type="password" placeholder="密码" /></div>
|
||
|
</div>
|
||
|
|
||
|
<div class="m-2 space-y-8">
|
||
|
<a class="btn btn-green">
|
||
|
登录
|
||
|
</a>
|
||
|
<a class="btn btn-stone">
|
||
|
注册
|
||
|
</a>
|
||
|
</div>
|
||
|
|
||
|
<script type="module" src="./src/main.ts"></script>
|
||
|
</body>
|
||
|
</html>
|