<!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>Document</title>
<link rel="stylesheet" href="/static/third_party/bootstrap-5.1.3-dist/css/bootstrap.min.css">
<script src="/static/third_party/bootstrap-5.1.3-dist/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<form>
<div class="row">
<div class="col-md-6 col-xs-12">
<div class="mb-3">
<label for="exampleFormControlInput1" class="form-label">用户名</label>
<input type="text" class="form-control" id="exampleFormControlInput1" placeholder="用户名">
</div>
</div>
<div class="col-md-6 col-xs-12">
<div class="mb-3">
<label for="exampleFormControlInput1" class="form-label">密码</label>
<input type="password" class="form-control" id="exampleFormControlInput1" placeholder="密码">
</div>
</div>
<div class="col-xs-12">
<div class="mb-3">
<label for="exampleFormControlTextarea1" class="form-label">个人简介</label>
<textarea class="form-control" id="exampleFormControlTextarea1" rows="3"></textarea>
</div>
</div>
<div class="col-md-6 col-xs-12">
<button type="button" class="btn btn-success" style="width: 100%; margin-bottom: 10px;">提交</button>
</div>
<div class="col-md-6 col-xs-12">
<button type="button" class="btn btn-secondary" style="width: 100%;">取消</button>
</div>
</div>
</form>
</div>
</body>
</html>