-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupdate_basic.html
More file actions
48 lines (43 loc) · 1.34 KB
/
update_basic.html
File metadata and controls
48 lines (43 loc) · 1.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>基本信息修改界面</title>
<link rel="stylesheet" href="css/demo.css">
<link rel="stylesheet" href="css/sky-forms.css">
<script src="js/jquery-1.9.1.min.js"></script>
<script src="js/jquery.validate.min.js"></script>
</head>
<body class="bg-cyan">
<div id="div" style="height:430px">
<form id="sky-form" action="data/update_basic.php">
<header>EMP UpdateBasic</header>
<fieldset style="height:288px">
<section>
<laber class="input">
姓 名:<input type="text" name='user_name' id="i1" placeholder="YourName"><br>
</laber>
</section>
<section>
<laber class="input">
身份证:<input type="text" name='IDcard' id="i2" style="position:relative;left:-2px" placeholder="IDcard"><br>
</laber>
</section>
<section>
<laber class="input">
电 话:<input type="text" name='phone' id="i3" placeholder="Phone"><br>
</laber>
</section>
<section>
<laber class="input">
邮 箱:<input type="text" name='email' id="i4" placeholder="Email"><br>
</laber>
</section>
</fieldset>
<footer>
<input type="submit" class="button" value="确定">
<a href="data/basicshow.php">取消</a></footer>
</form>
</div>
</body>
</html>