forked from evannwong/471-WFH-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin_edit_rulesform.html
68 lines (58 loc) · 2.6 KB
/
admin_edit_rulesform.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
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags-->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Colorlib Templates">
<meta name="author" content="Colorlib">
<meta name="keywords" content="Colorlib Templates">
<!-- Title Page-->
<title>Add rules</title>
<!-- Font special for pages-->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i" rel="stylesheet">
<!-- Main CSS-->
<link href="css/main.css" rel="stylesheet" media="all">
</head>
<body>
<div class="page-wrapper bg-dark p-t-100 p-b-50">
<div class="wrapper wrapper--w900">
<div class="card card-6">
<div class="card-heading">
<h2 class="title">Add rules</h2>
</div>
<div class="card-body">
<form method="POST" action="admin_edit_rules.php"> <!--change the php file name-->
<div class="form-row">
<div class="name">Rule id</div>
<div class="value">
<input class="input--style-6" type="number" name="rule_id" id="rule_id" placeholder="Enter rule description" required>
</div>
</div>
<div class="form-row">
<div class="name">Description</div>
<div class="value">
<input class="input--style-6" type="text" name="descr" id="descr" placeholder="Enter rule description" required>
</div>
</div>
<div class="form-row">
<div class="name">Permission</div>
<div class="value">
<input class="input--style-6" type="text" name="perm" id="perm" placeholder="Enter persimission" required>
</div>
</div>
<div class="card-footer">
<button class="btn btn--radius-2 btn--blue-2" type="submit">Apply edit</button>
</div>
</form>
</div>
</div>
</div>
</div>
<!-- Jquery JS-->
<!-- <script src="vendor/jquery/jquery.min.js"></script> -->
<!-- Main JS-->
<!-- <script src="js/global.js"></script> -->
</body><!-- This templates was made by Colorlib (https://colorlib.com) -->
</html>
<!-- end document-->