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
|
<!DOCTYPE html> <html lang="en">
<head> <?php include 'inc/head.php'; ?> <?php include 'inc/links.php'; ?> </head>
<body> <div class="app-container app-theme-white body-tabs-shadow fixed-sidebar ">
<?php include 'inc/header.php'; ?> <!-- <?php include 'inc/setting.php'; ?> -->
<div class="app-main">
<?php include 'inc/side_menu.php'; ?>
<div class="app-main__outer"> <div class="app-main__inner"> <div class="app-page-title"> <div class="page-title-wrapper"> <div class="page-title-heading">
<div> 課程分類 (修改) <!-- <div class="page-title-subheading"> This is an example dashboard created using build-in elements and components. </div> --> </div> </div> <div class="page-title-actions">
<div class="page-title-actionsWrap dropdown"> <button type="button" class="btn-shadow btn btn-light" onclick="window.location.href = 'category.php';"> <span class="btn-icon-wrapper pr-2 opacity-7">
<i class="fas fa-angle-left"></i> </span> 返回 </button>
</div> </div> </div> </div>
<div class="formWrap"> <div class="row mb-4">
<div class="col-md-6"> <div class="position-relative form-group"><label for="name" class="">分類名稱: <span class="text-danger">*</span></label><input name="name" id="name" placeholder="" type="text" value="分類A" class="form-control"></div> </div>
</div> <button type="button" class="btn-shadow btn btn-primary" onclick="window.location.href = 'category.php';"> <span class="btn-icon-wrapper pr-2 opacity-7"> <i class="fas fa-save fa-w-20"></i> </span> 儲存 </button> </div>
</div> <?php include 'inc/footer.php'; ?> </div> </div> </div>
<script type="text/javascript" src="./assets/scripts/main.js"></script> </body>
</html>
|