-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmyMessage.html
More file actions
85 lines (81 loc) · 2.08 KB
/
myMessage.html
File metadata and controls
85 lines (81 loc) · 2.08 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link href="css/myMessage.css" rel="stylesheet" type="index/css">
<link href="css/recourse/common.css" rel="stylesheet" type="index/css">
<script type="text/javascript" src="js/plugins/jquery.js"></script>
<script type="text/javascript" src="js/plugins/My97DatePicker/WdatePicker.js"></script>
<script type="text/javascript" src="js/myMessage.js"></script>
<title>我的消息</title>
</head>
<body>
<div id="myMessage">
<div class="mm_content">
<div class="con_left">
<ul>
<li><a href="#">我的信息</a></li>
<div class="line"></div>
<li><a href="#">我赞过的</a></li>
<li><a href="#">我的评论</a></li>
<li><a href="#">我的发布</a></li>
</ul>
</div>
<div class="con_con">
<div class="aboutMe">
<span class="tap">个人资料</span>
<div class="line_4"></div>
<table>
<tr>
<td>当前头像</td>
<td><img src="img/example.jpg"></td>
</tr>
<td>昵称</td>
<td>
<input name="userName" id="nickname" required="required"/>
</td>
</tr>
<tr>
<td>手机号</td>
<td>
<input id="mobile" required="required">
</td>
</tr>
<tr>
<td>QQ号</td>
<td>
<input id="qq">
</td>
</tr>
<tr>
<td>邮箱</td>
<td>
<input id="mail" type="email">
</td>
</tr>
<tr>
<td>入学时间</td>
<td>
<input type="text" name="schooltime" id="starttime" class="Wdate" onClick="WdatePicker({minDate:'2000-01',dateFmt:'yyyy-MM'})">
</td>
</tr>
<tr>
<td>所在分院</td>
<td>
<input id="college" required="required">
</td>
</tr>
<tr>
<td>所学专业</td>
<td><input id="major" required="required"></td>
</tr>
<tr>
<td><button id="save">保存</button></td>
</tr>
</table>
</div>
</div>
</div>
</div>
</body>
</html>