b173ecf9e0d8303a3b29e4cd73546275.php
4.2 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<?php if (!defined('THINK_PATH')) exit();?><!doctype html>
<html>
<head>
<meta charset="utf-8">
<!-- Set render engine for 360 browser -->
<meta name="renderer" content="webkit">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- HTML5 shim for IE8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<![endif]-->
<link href="/public/simpleboot/themes/<?php echo C('SP_ADMIN_STYLE');?>/theme.min.css" rel="stylesheet">
<link href="/public/simpleboot/css/simplebootadmin.css" rel="stylesheet">
<link href="/public/js/artDialog/skins/default.css" rel="stylesheet" />
<link href="/public/simpleboot/font-awesome/4.4.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<style>
form .input-order{margin-bottom: 0px;padding:3px;width:40px;}
.table-actions{margin-top: 5px; margin-bottom: 5px;padding:0px;}
.table-list{margin-bottom: 0px;}
</style>
<!--[if IE 7]>
<link rel="stylesheet" href="/public/simpleboot/font-awesome/4.4.0/css/font-awesome-ie7.min.css">
<![endif]-->
<script type="text/javascript">
//全局变量
var GV = {
ROOT: "/",
WEB_ROOT: "/",
JS_ROOT: "public/js/",
APP:'<?php echo (MODULE_NAME); ?>'/*当前应用名*/
};
</script>
<script src="/public/js/jquery.js"></script>
<script src="/public/js/wind.js"></script>
<script src="/public/simpleboot/bootstrap/js/bootstrap.min.js"></script>
<script>
$(function(){
$("[data-toggle='tooltip']").tooltip();
});
</script>
<?php if(APP_DEBUG): ?><style>
#think_page_trace_open{
z-index:9999;
}
</style><?php endif; ?>
</head>
<body>
<div class="wrap">
<ul class="nav nav-tabs">
<li class="active"><a href="<?php echo U('User/userinfo');?>"><?php echo L('ADMIN_USER_USERINFO');?></a></li>
<li><a href="<?php echo U('setting/password');?>"><?php echo L('ADMIN_SETTING_PASSWORD');?></a></li>
</ul>
<form class="form-horizontal js-ajax-form" method="post" action="<?php echo U('User/userinfo_post');?>">
<fieldset>
<div class="control-group">
<label class="control-label" for="input-user_nicename"><span class="form-required">*</span><?php echo L('NICENAME');?></label>
<div class="controls">
<input type="hidden" name="id" value="<?php echo ($id); ?>">
<input type="text" id="input-user_nicename" name="user_nicename" value="<?php echo ($user_nicename); ?>" required>
</div>
</div>
<div class="control-group">
<label class="control-label" for="input-gender"><?php echo L('GENDER');?></label>
<div class="controls">
<select name="sex" id="input-gender">
<?php $sexs=array("0"=>L('GENDER_SECRECY'),"1"=>L('MALE'),"2"=>L('FEMALE')); ?>
<?php if(is_array($sexs)): foreach($sexs as $key=>$vo): $sexselected=$key==$sex?"selected":""; ?>
<option value="<?php echo ($key); ?>"<?php echo ($sexselected); ?>><?php echo ($vo); ?></option><?php endforeach; endif; ?>
</select>
</div>
</div>
<div class="control-group">
<label class="control-label" for="input-birthday"><span class="form-required">*</span><?php echo L('BIRTHDAY');?></label>
<div class="controls">
<input class="js-date" type="text" id="input-birthday" placeholder="2013-01-04" name="birthday" value="<?php echo ($birthday); ?>" required>
</div>
</div>
<div class="control-group">
<label class="control-label" for="input-user_url"><?php echo L('WEBSITE');?></label>
<div class="controls">
<input type="text" id="input-user_url" placeholder="http://thinkcmf.com" name="user_url" value="<?php echo ($user_url); ?>">
</div>
</div>
<div class="control-group">
<label class="control-label" for="input-signature"><?php echo L('SIGNATURE');?></label>
<div class="controls">
<textarea id="input-signature" placeholder="<?php echo L('SIGNATURE');?>" name="signature"><?php echo ($signature); ?></textarea>
</div>
</div>
<div class="form-actions">
<button type="submit" class="btn btn-primary js-ajax-submit"><?php echo L('SAVE');?></button>
</div>
</fieldset>
</form>
</div>
<script src="/public/js/common.js"></script>
</body>
</html>