-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapply_leave_view.php
47 lines (37 loc) · 1.9 KB
/
apply_leave_view.php
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
<?php
include("check.php");
?>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Apply Leave</title>
</head>
<body>
<h1>請假單</h1>
<form action="apply_leave_control.php" method="post" name="leaveform" id="leaveform">
<label for="leavewhy">假別:</label>
<select name="leavewhy" class="leavewhy" id="leavewhy" dir="ltr" lang="zh" >
<option value="personal_leave">事假</option>
<option value="sick_leave">病假</option>
<option value="annual_leave">特休</option>
<option value="menstruation_leave">生理假</option>
</select>
<br>
<p>請假日期:</p>
開始:<input type="date" name="leavetime_start" id="leavetime_start">
<select name="leavetime_start_when" id="leavetime_start_when">
<option value="morning">早上</option>
<option value="afternoon">下午</option>
</select>
結束:<input type="date" name="leavetime_end" id="leavetime_end">
<select name="leavetime_end_when" id="leavetime_end_when">
<option value="morning">早上</option>
<option value="afternoon">下午</option>
</select>
<br>
<p>請假事由: <br/><textarea name="leavewhy_txt"></textarea></p>
<input type="submit" name="submit">
</form>
</body>
</html>