You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
122 lines
4.5 KiB
122 lines
4.5 KiB
<!DOCTYPE html>
|
|
<html lang="zh-cn">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" href="{{ url_for('static',filename='css/bootstrap.css') }}">
|
|
<script src="{{ url_for('static',filename='js/bootstrap.js') }}"></script>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
|
<meta name="renderer" content="webkit">
|
|
<title></title>
|
|
<link rel="stylesheet" href="{{ url_for('static',filename='css/pintuer.css') }}">
|
|
<link rel="stylesheet" href="{{ url_for('static',filename='css/admin.css') }}">
|
|
<script src="{{ url_for('static',filename='js/jquery.js') }}"></script>
|
|
<script src="{{ url_for('static',filename='js/pintuer.js') }}"></script>
|
|
|
|
</head>
|
|
<body>
|
|
<div class="panel admin-panel">
|
|
<div class="panel-head" id="add"><strong><span class="icon-pencil-square-o"></span>个人信息</strong></div>
|
|
<div class="body-content">
|
|
<form method="post" class="form-x" action="">
|
|
<div style="padding-left:20px ;padding-bottom: 20px;">
|
|
<label>【基本信息】</label>
|
|
</div>
|
|
<div class="form-group">
|
|
<div class="label">
|
|
<label>学号:</label>
|
|
</div>
|
|
<div class="field l10" >
|
|
<input type="text" class="input w100" value="{{ stu_id }}" name="stu_id" />
|
|
<div class="tips"></div>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<div class="label">
|
|
<label>姓名:</label>
|
|
</div>
|
|
<div class="field l10">
|
|
<input type="text" class="input w100" value="{{ name }}" name="name" />
|
|
<div class="tips"></div>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<div class="label">
|
|
<label>年级:</label>
|
|
</div>
|
|
<div class="field l10">
|
|
<input type="text" class="input w50" value="{{ grade }}" name="tec_title" />
|
|
<div class="tips"></div>
|
|
</div>
|
|
</div>
|
|
<ul class="list-inline" style="padding-left: 40px; padding-bottom: 25px;">
|
|
<li>部门:</li>
|
|
<li style="padding-right: 200px;"><div class="field" >
|
|
<input type="text" class="input" name="department" value="{{ department }}" />
|
|
</div>
|
|
</li>
|
|
<li>性别:</li>
|
|
<li style="padding-right: 200px;"><div class="field" >
|
|
<input type="text" class="input" name="gender" value="{{ gender }}" />
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
<ul class="list-inline" style="padding-left: 40px; padding-bottom: 25px;">
|
|
<li>入学年份:</li>
|
|
<li style="padding-right: 200px;"><div class="field" >
|
|
<input type="text" class="input" name="en_year" value="{{ en_year }}" />
|
|
</div>
|
|
</li>
|
|
|
|
</ul>
|
|
<ul class="list-inline" style="padding-left: 40px; padding-bottom: 25px;">
|
|
<li>出生年月:</li>
|
|
<li style="padding-right: 200px;"><div class="field" >
|
|
<input type="text" class="input" name="birthday" value="{{ birthday }}" style="padding:10px!important; height:auto!important;border:1px solid #ddd!important;" />
|
|
</div>
|
|
</li>
|
|
<li>邮箱:</li>
|
|
<li><div class="field">
|
|
<input type="text" class="input" name="email" value="{{ email }}" />
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
<ul class="list-inline" style="padding-left: 65px; padding-bottom: 25px;">
|
|
<li>电话:</li>
|
|
<li style="padding-right: 200px;"><div class="field" >
|
|
<input type="text" class="input" name="number" value="{{ number }}" style="padding:10px!important; height:auto!important;border:1px solid #ddd!important;" />
|
|
</div>
|
|
</li>
|
|
|
|
</ul>
|
|
<ul class="list-inline" style="padding-left: 40px; padding-bottom: 25px;">
|
|
<li>政治面貌:</li>
|
|
<li style="padding-right: 200px;"><div class="field" >
|
|
<input type="text" class="input" name="pol_status" value="{{ pol_status }}" />
|
|
</div>
|
|
</li>
|
|
<li>学历:</li>
|
|
<li><div class="field">
|
|
<input type="text" class="input" name="edu_background" value="{{ edu_background }}" />
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
|
|
<div class="form-group">
|
|
<div class="label">
|
|
<label>家庭地址:</label>
|
|
</div>
|
|
<div class="field l10" >
|
|
<input type="text" class="input w100" value="{{ address }}" name="address" />
|
|
<div class="tips"></div>
|
|
</div>
|
|
</div>
|
|
<div class="field">
|
|
<a class="button bg-main icon-check-square-o" href="/stu" style="margin-left: 500px;" > 返回主页</a>
|
|
</div>
|
|
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</body></html> |