-
Notifications
You must be signed in to change notification settings - Fork 2
/
setting-edit.html
70 lines (68 loc) · 1.93 KB
/
setting-edit.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0">
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="apple-touch-icon" href="iphon_tetris_icon.png"/>
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<link rel="apple-touch-startup-image" href="startup.png" />
<meta name='description' content='' >
<meta name='author' content='' >
<title>友演出-项目-歌迷应用-设置资料</title>
<link rel='stylesheet' type='text/css' href='css/style.3.5.css' />
<style>
#personMessage {
background: url(images/tool/setting-background.png);
height: 320px;
}
#personMessage form {
background: #333;
color: white;
width: 90%;
margin: auto auto;
top: 10px;
}
#personMessage p {
padding-top: 10px;
padding-bottom: 10px;
font-size: 16px;
line-height: 24px;
}
#personMessage span {
padding: 20px;
}
#personMessage input {
border: none;
background: #333;
}
#personMessage textarea {
border: none;
background: #333;
width: 70%;
height: 70%;
float: right;
}
</style>
<body>
<header class='header-bar'>
<a id='back' class='back-button' href='setting.html'></a>
<span id='page-name' class='relative page-name'>资料</span>
</header>
<!-- show a select bar -->
<!-- the main content -->
<div id='wrapper'>
<div id='personMessage' >
<form method='post' class='round8 relative'>
<p><span>用户名</span><input type='text' /></p>
<div class='black-line'></div>
<p><span>性别</span><input type='text' /></p>
<div class='black-line'></div>
<p><span>所在城市</span><input type='text' /></p>
<div class='black-line'></div>
<p style='height: 100px;'><span>简介</span><textarea type='text'></textarea></p>
</form>
</div>
</div>
</body>
</html>