You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1.3 KiB

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>欢迎使用无人超市</title>
<link rel="stylesheet" href="../static/css/userSign.css">
</head>
<main>
<h1 class="welcome">用户注册</h1>
<!-- <canvas id="gifFace" width="300" height="300"> </canvas> -->
<!-- <div><img src="smartshop/img/face.gif" alt="face"></div> -->
</main>
<br>
<form action="../static/js/userSign.js" method="POST" class="form">
<br>
<div style="text-align: center;">
<label>用户名</label>
<!-- name属性是必须的,用来提交给数据库 -->
<input type="text" name="用户名" placeholder="请输入用户名">
</div>
<br>
<div style="text-align: center;">
<label>密码</label>
<!-- name属性是必须的,用来提交给数据库 -->
<input type="password" name="密码" placeholder="请输入密码">
</div>
<br>
<div style="text-align: center;">
<label>确认密码</label>
<!-- name属性是必须的,用来提交给数据库 -->
<input type="password" name="确认密码" placeholder="请再次输入密码">
</div>
<br>
<!-- 居中 -->
<div style="text-align: center;"><input class="submit" type="submit" name="提交" value="提交"></div>
</form>
</html>