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.
 
 

45 lines
1.5 KiB

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<link href="https://fonts.yecdn.com/css2?family=Noto+Sans+SC&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Noto Sans SC', sans-serif;
background-color: black;
color: white;
}
input {
border: none !important;
border-radius: 0 !important;
border-bottom: 2px solid !important;
background: black !important;
color: white !important;
}
.btn-link,
.btn-link:hover {
color: inherit;
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<form action="verify" method="post">
{% for v in vs %}
<div class="form-group row">
<label for="{{v[0]}}" class="col-sm-8 col-form-label">{{v[1]}}</label>
<div class="col-sm-4">
<input type="text" class="form-control" name="{{v[0]}}" id="{{v[0]}}" placeholder="{{v[2]}}" required="required">
</div>
</div>
{% endfor %}
<button type="submit" class="btn btn-link btn-lg">提交</button>
</form>
</div>
</body>
</html>