This repository was archived by the owner on Nov 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBaseData.html
More file actions
77 lines (61 loc) · 2.97 KB
/
BaseData.html
File metadata and controls
77 lines (61 loc) · 2.97 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
<!DOCTYPE html>
<html>
<?!= Include('_Head'); ?>
<body>
<div class="container">
<div class="nrs_stack">
<nav>
<div class="nav nav-tabs" id="nav-tab" role="tablist">
<a class="nav-item nav-link active" id="nav-home-tab" data-toggle="tab" href="#nav-home" role="tab" aria-controls="nav-home" aria-selected="true">卡片類別</a>
<a class="nav-item nav-link" id="nav-profile-tab" data-toggle="tab" href="#nav-profile" role="tab" aria-controls="nav-profile" aria-selected="false">進駐團隊</a>
<a class="nav-item nav-link" id="nav-contact-tab" data-toggle="tab" href="#nav-contact" role="tab" aria-controls="nav-contact" aria-selected="false">機器</a>
</div>
</nav>
<div class="tab-content" id="nav-tabContent">
<div class="tab-pane fade show m-4 active" id="nav-home" role="tabpanel" aria-labelledby="nav-home-tab">
<form action="<?= actionUrl ?>" method="post" target="_blank">
<input type="hidden" name="TableName" value="CardType" />
<div class="form-group">
<label>卡片類別名稱</label>
<input class="form-control" type="text" name="Name" placeholder="請填入卡片類別名稱" required/>
</div>
<button type="submit" class="btn btn-primary">送出</button>
</form>
</div>
<div class="tab-pane fade m-4" id="nav-profile" role="tabpanel" aria-labelledby="nav-profile-tab">
<form action="<?= actionUrl ?>" method="post" target="_blank">
<input type="hidden" name="TableName" value="Team" />
<div class="form-group">
<label>進駐團隊名稱</label>
<input class="form-control" type="text" name="Name" placeholder="請填入進駐團隊名稱" required/>
</div>
<div class="form-check form-group">
<input class="form-check-input" type="checkbox" name="IsActive" id="checkkk" checked>
<label class="form-check-label" for="checkkk">
進駐中
</label>
</div>
<button type="submit" class="btn btn-primary">送出</button>
</form>
</div>
<div class="tab-pane fade m-4" id="nav-contact" role="tabpanel" aria-labelledby="nav-contact-tab">
<form action="<?= actionUrl ?>" method="post" target="_blank">
<input type="hidden" name="TableName" value="Machine" />
<div class="form-group">
<label>機器名稱</label>
<input class="form-control" type="text" name="Name" placeholder="請填入機器名稱" required/>
</div>
<div class="form-group">
<label>收費費用</label>
<input class="form-control" type="number" name="Charge" placeholder="(單位: 元/半小時)" required/>
</div>
<button type="submit" class="btn btn-primary">送出</button>
</form>
</div>
</div>
</div>
</div>
</body>
<script>
</script>
</html>