forked from MAXIAODONGS/runSchool
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadd_card.html
More file actions
64 lines (56 loc) · 2.97 KB
/
add_card.html
File metadata and controls
64 lines (56 loc) · 2.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>校园跑腿</title>
<meta name="description" content="校园跑腿"/>
<meta name="keywords" content="校园跑腿"/>
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<link rel="stylesheet" href="css/amazeui.min.css"/>
<link rel="stylesheet" href="css/style.css"/>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/amazeui.min.js"></script>
<script type="text/javascript" src="js/application.js"></script>
</head>
<body>
<header data-am-widget="header" class="am-header am-header-default header">
<div class="am-header-left am-header-nav">
<a href="javascript:history.go(-1)" class="">
<i class="am-header-icon am-icon-angle-left"></i>
</a>
</div>
<h1 class="am-header-title"><a href="#title-link" class="" style="color: #333;">实名认证</a></h1>
<div class="am-header-right am-header-nav">
<a href="javascript:history.go(-1) " style="color: #79bbff">提交</a>
</div>
</header>
<div class="demo" style="background: white;margin-top: 2px">
<span class="tip gray">姓名: </span><input type="text" class="input file" placeholder="请输入真实姓名"
maxlength="18"/>
</div>
<div class="demo" style="background: white;margin-top: 2px">
<span class="tip gray">身份证: </span><input type="number" class="input file" placeholder="请输入真实的身份证号码"
maxlength="11"/>
</div>
<div class="demo" style="background: white;margin-top: 2px">
<span class="tip gray">身份证正面: </span><input type="file" class="input file" placeholder="请上传身份证正面照片"
maxlength="11"/>
</div>
<div class="demo" style="background: white;margin-top: 2px">
<span class="tip gray">身份证反面: </span><input type="file" class="input file" placeholder="请上传身份证反面照片"
maxlength="11"/>
</div>
<div class="demo" style="background: white;margin-top: 2px">
<span class="tip gray">手持身份证: </span><input type="file" class="input file" placeholder="请上传手持身份证照片"
maxlength="11"/>
</div>
<div class="demo" style="background: white;margin-top: 2px">
<span class="tip gray">学号: </span><input type="number" class="input file" placeholder="请输入真实的学号信息"
maxlength="11"/>
</div>
<div class="demo" style="background: white;margin-top: 2px">
<span class="tip gray">手持学生证: </span><input type="file" class="input file" placeholder="请上传手持学生证照片"
maxlength="11"/>
</div>
</body>
</html>