-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddAllow.html
65 lines (60 loc) · 2.05 KB
/
addAllow.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="css/amazeui.min.css">
<link rel="stylesheet" href="css/admin.css">
<link rel="stylesheet" href="css/app.css">
<style>
.admin-main{
padding-top: 0px;
}
</style>
</head>
<body>
<div class="am-cf admin-main">
<!-- content start -->
<div class="admin-content">
<div class="admin-content-body">
<div class="am-g">
<form class="am-form am-form-horizontal" action="addAllow_ok.php" method="post" >
<input value="504" name="roleId" type="hidden">
<div class="am-form-group">
<label for="user-name" class="am-u-sm-3 am-form-label">
项目编号
</label>
<div class=" " style="position: absolute;right: 180px;top:7px;">
<input id="projectNo" placeholder="输入项目编号" value="" name="projectNo" type="text">
</div>
</div>
<div class="am-form-group">
<label for="user-name" class="am-u-sm-3 am-form-label">
部门编号
</label>
<div class=" " style="position: absolute;right: 180px;top:56px;">
<input id="departNo" placeholder="输入部门编号" value="" name="departNo" type="text">
</div>
</div>
<div class="am-form-group">
<label for="user-name" class="am-u-sm-3 am-form-label">
职责
</label>
<div class=" " style="position: absolute;right: 180px;top:106px;">
<input id="work" required="" placeholder="输入职责" value="" name="work" type="text">
</div>
</div>
<div class="am-form-group">
<div class="" style="position: absolute; left:130px;top:256px;">
<input type="hidden" name="action" value="insert">
<input id="addRole" class="am-btn am-btn-success" value="添加" type="submit">
<input class="am-btn am-btn-success" type="reset" name="reset" value="重置">
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</body>
</html>