ElmDemo/UI/pages/register.html

40 lines
819 B
HTML
Raw Normal View History

2023-06-15 13:21:48 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
2023-06-20 15:35:50 +00:00
<link rel="icon" type="image/svg+xml" href="../assets/svgs/favicon.svg"/>
2023-06-15 13:21:48 +00:00
<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">
2023-06-20 15:35:50 +00:00
<div>手机号码: <label>
手机号码:
<input type="tel" placeholder="手机号码"
/>
</label></div>
<div>密码: <label>
密码:
<input type="password" placeholder="密码"/>
</label></div>
2023-06-15 13:21:48 +00:00
</div>
<div class="m-2 space-y-8">
<a class="btn btn-green">
登录
</a>
<a class="btn btn-stone">
注册
</a>
</div>
2023-06-20 15:35:50 +00:00
<script type="module" src="../src/main.ts"></script>
2023-06-15 13:21:48 +00:00
</body>
</html>