-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchangeInfo.html
71 lines (58 loc) · 2.37 KB
/
changeInfo.html
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
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0,minimum-scale=1.0, maximum-scale=1.0,user-scalable=no">
<title>用户信息</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css"/>
<link rel="stylesheet" type="text/css" href="css/style.css"/>
<link rel="stylesheet" type="text/css" href="css/base.css"/>
<link rel="stylesheet" type="text/css" href="css/reset.css"/>
<link rel="stylesheet" type="text/css" href="css/changeInfo.css"/>
</head>
<body>
<div id="bodyAll">
<header id="header">
<div>
<h1>修改用户信息</h1>
</div>
</header>
<div class="container">
<div class="row clearfix">
<div class="col-md-12 column">
<form role="form">
<div class="form-group">
<label for="InputName1">姓名</label><input type="email" class="form-control" id="InputName1" />
</div>
<div class="form-group">
<label for="InputPassword1">身份证号</label><input type="password" class="form-control" id="InputPassword1" />
</div>
<div class="form-group">
<label for="InputEmail1">邮箱</label><input type="email" class="form-control" id="InputEmail1" />
</div>
<div class="form-group">
<label for="InputPhone1">电话号码</label><input type="phone" class="form-control" id="InputPhone1" />
</div>
<div id="changeSubmit">
<button type="submit" class="btn btn-lg btn-primary" type="button">提交</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<footer id="footer">
<div class="footer-bottom">
<ul>
<li><a href="index.html"><i class="icon-home"></i><br/>首页</a></li>
<li><a href="dingpiao.html"><i class="icon-file-text"></i><br/>订票</a></li>
<li><a href="dingdan.html"><i class="icon-profile"></i><br/>订单</a></li>
<li><a href="user.html"><i class="icon-user"></i><br/>用户</a></li>
</ul>
</div>
</footer>
<div style="height:500px;">
</div>
</body>
</html>